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.

58 lines
2.2 KiB

  1. #include "PrmDescr.h"
  2. #pragma once
  3. #define HEX(c) ((c)<=L'9'?(c)-L'0':(c)<=L'F'?(c)-L'A'+0xA:(c)-L'a'+0xA)
  4. //----------------------------------------------------
  5. // Parser for the Guid type of argument
  6. DWORD
  7. FnPaGuid(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  8. //----------------------------------------------------
  9. // Parser for the argument of the "mask" parameter
  10. DWORD
  11. FnPaMask(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  12. //----------------------------------------------------
  13. // Parser for the argument of the "enabled" parameter
  14. DWORD
  15. FnPaEnabled(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  16. //----------------------------------------------------
  17. // Parser for the argument of the "ssid" parameter
  18. DWORD
  19. FnPaSsid(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  20. //----------------------------------------------------
  21. // Parser for the argument of the "bssid" parameter
  22. DWORD
  23. FnPaBssid(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  24. //----------------------------------------------------
  25. // Parser for the argument of the "im" parameter
  26. DWORD
  27. FnPaIm(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  28. //----------------------------------------------------
  29. // Parser for the argument of the "am" parameter
  30. DWORD
  31. FnPaAm(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  32. //----------------------------------------------------
  33. // Parser for the argument of the "priv" parameter
  34. DWORD
  35. FnPaPriv(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  36. //----------------------------------------------------
  37. // Parser for the argument of the "key" parameter
  38. DWORD
  39. FnPaKey(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  40. //----------------------------------------------------
  41. // Parser for the boolean argument for the "onex" parameter
  42. DWORD
  43. FnPaOneX(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);
  44. //----------------------------------------------------
  45. // Parser for the "outfile" file name parameter
  46. FnPaOutFile(PPARAM_DESCR_DATA pPDData, PPARAM_DESCR pPDEntry, LPWSTR wszParamArg);