DeleteAllDevices Method

PPJoy

Deletes all registered PPJoy joystick Devices.

Namespace:  PPJoy
Assembly:  PPJoyWrapper (in PPJoyWrapper.dll)

Syntax

Visual Basic (Declaration)
Public Sub DeleteAllDevices ( _
	removeDirectInput As Boolean, _
	removeDriver As Boolean _
)
C#
public void DeleteAllDevices(
	bool removeDirectInput,
	bool removeDriver
)
Visual C++
public:
void DeleteAllDevices(
	bool removeDirectInput, 
	bool removeDriver
)

Parameters

removeDirectInput
Type: System..::.Boolean
If trueTruetruetrue (True in Visual Basic), each Device's registration will be removed from DirectInput. If falseFalsefalsefalse (False in Visual Basic), no Device's DirectInput registration will be removed.
removeDriver
Type: System..::.Boolean
If trueTruetruetrue (True in Visual Basic), each Device's drivers will be unregistered from the system. If falseFalsefalsefalse (False in Visual Basic), no Device's drivers will be unregistered from the system.

See Also