Home
Name Modified Size InfoDownloads / Week
vJoyWrapper.dll 2012-08-17 16.4 kB
LICENSE.txt 2012-05-23 12.1 kB
README.txt 2012-05-23 551 Bytes
Totals: 3 Items   29.0 kB 1
vJoyWrapper
https://sourceforge.net/p/vjoywrapper

This is a .NET wrapper library for vJoy, a virtual joystick driver for Windows. It only works with the PPJoy-compatible versions of vJoy.
http://sourceforge.net/projects/vjoystick/

Some code borrowed from PPJoyWrapper
http://sourceforge.net/projects/ppjoylib/

Usage:

	using vJoyWrapper;

	VJoy joystick = new VJoy();

	if(joystick.IsDeviceAccessible()) {
		joystick.SetButton(0, true);
		joystick.SetAxis(JoystickAxis.AxisX, VJoy.AxisMax);
		joystick.UpdateJoystick();
	}

Source: README.txt, updated 2012-05-23