Modalità portatile/slate attivando tra stati
Questo argomento contiene codice di esempio che attiva lo stato dell'indicatore della modalità laptop/slate.
int __cdecl ToggleConversionIndicator(
__in int argc,
__in_ecount(argc) char **argv)
{
LPWSTR DevicePath;
HANDLE FileHandle;
BOOL b;
BYTE buffer;
HWND hwnd;
MSG msg;
//assuming our GetDevicePath method is creating a device path using use SetupDi API
DevicePath = GetDevicePath((LPGUID)&GUID_GPIOBUTTONS_LAPTOPSLATE_INTERFACE);
FileHandle = CreateFile(DevicePath,
GENERIC_WRITE,
0,
NULL,
OPEN_EXISTING,
0,
NULL);
buffer = 0;
WriteFile(FileHandle, &buffer, sizeof(buffer), NULL, NULL);
return 0;
}
Nota: Il dispositivo indicatore della modalità laptop/slate può essere aperto solo da un processo alla volta. CreateFile avrà esito negativo e GetLastError restituirà ERROR_ACCESS_DENIED quando il dispositivo è già aperto da un altro processo.