[DllImport("dtl.dll", SetLastError=true)]
static extern public void DTL_UNINIT(int driver_id);
Declare Function DTL_UNINIT Lib "dtl.dll" (TODO) As TODO
None.
Do you know one? Please contribute it!
None.
Please add some!
public static void DtlUninit(int driverId)
{
new UIPermission(UIPermissionWindow.AllWindows).Demand();
UnsafeNativeMethods.DTL_UNINIT(driverId);
}
public void Uninitialize()
{
if (_dtlInitialized)
{
Dtl.DtlUninit(_driverId);
_dtlInitialized = false;
}
}