mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
[PSDK] Add definitions of desired Native Wi-Fi data access permissions (#7626)
The `WLAN_READ_ACCESS`, `WLAN_WRITE_ACCESS` and `WLAN_EXECUTE_ACCESS` flags are for controlling whether we can (or not) return data via Wlan[Get|Query]* or modify via WlanSet* function families. https://learn.microsoft.com/en-us/windows/win32/nativewifi/native-wifi-api-permissions
This commit is contained in:
parent
e3e520d154
commit
abe20f6120
1 changed files with 4 additions and 0 deletions
|
@ -29,6 +29,10 @@ extern "C" {
|
|||
#define WLAN_AVAILABLE_NETWORK_HOTSPOT2_ROAMING 0x00000080
|
||||
#define WLAN_AVAILABLE_NETWORK_AUTO_CONNECT_FAILED 0x00000100
|
||||
|
||||
#define WLAN_READ_ACCESS (STANDARD_RIGHTS_READ | FILE_READ_DATA)
|
||||
#define WLAN_EXECUTE_ACCESS (STANDARD_RIGHTS_EXECUTE | FILE_EXECUTE | WLAN_READ_ACCESS)
|
||||
#define WLAN_WRITE_ACCESS (STANDARD_RIGHTS_WRITE | FILE_WRITE_DATA | DELETE | WRITE_DAC | WLAN_READ_ACCESS | WLAN_EXECUTE_ACCESS)
|
||||
|
||||
/* Enumerations */
|
||||
|
||||
#if defined(__midl) || defined(__WIDL__)
|
||||
|
|
Loading…
Reference in a new issue