Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
801 B

  1. //
  2. // For stuff that's passed from Winlogon/Group Policy
  3. // to polstore (see RSOP_PolicySetting in MSDN)
  4. //
  5. #define WIRELESS_RSOP_CLASSNAME L"RSOP_IEEE80211PolicySetting"
  6. typedef struct _GPO_INFO {
  7. BSTR bsCreationtime;
  8. UINT32 uiPrecedence;
  9. BSTR bsGPOID;
  10. BSTR bsSOMID;
  11. UINT32 uiTotalGPOs;
  12. } GPO_INFO, *PGPO_INFO;
  13. HRESULT
  14. WirelessWriteDirectoryPolicyToWMI(
  15. LPWSTR pszMachineName,
  16. LPWSTR pszPolicyDN,
  17. PGPO_INFO pGPOInfo,
  18. IWbemServices *pWbemServices
  19. );
  20. HRESULT
  21. WirelessClearWMIStore(
  22. IWbemServices *pWbemServices
  23. );
  24. typedef struct _RSOP_INFO {
  25. LPWSTR pszCreationtime;
  26. LPWSTR pszID;
  27. LPWSTR pszName;
  28. UINT32 uiPrecedence;
  29. LPWSTR pszGPOID;
  30. LPWSTR pszSOMID;
  31. } RSOP_INFO, * PRSOP_INFO;