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.

37 lines
1.5 KiB

  1. #pragma once
  2. // default parameter values
  3. static const WCHAR c_szRegParamDefault[] = L"Default";
  4. // Required param info
  5. static const WCHAR c_szRegParamDesc[] = L"ParamDesc";
  6. static const WCHAR c_szRegParamType[] = L"Type";
  7. // Values for "Type"
  8. static const WCHAR c_szRegParamTypeInt[] = L"int";
  9. static const WCHAR c_szRegParamTypeLong[] = L"long";
  10. static const WCHAR c_szRegParamTypeWord[] = L"word";
  11. static const WCHAR c_szRegParamTypeDword[] = L"dword";
  12. static const WCHAR c_szRegParamTypeEnum[] = L"enum";
  13. static const WCHAR c_szRegParamTypeEdit[] = L"edit";
  14. static const WCHAR c_szRegParamTypeKeyonly[] = L"keyonly";
  15. // General parameter info
  16. static const WCHAR c_szRegParamOptional[] = L"Optional";
  17. static const WCHAR c_szRegParamHelpFile[] = L"HelpFile";
  18. static const WCHAR c_szRegParamHelpContext[] = L"HelpContext";
  19. // Ranges for numeric types
  20. static const WCHAR c_szRegParamBase[] = L"Base";
  21. static const WCHAR c_szRegParamStep[] = L"Step";
  22. static const WCHAR c_szRegParamMin[] = L"Min";
  23. static const WCHAR c_szRegParamMax[] = L"Max";
  24. static const WCHAR c_szRegParamMultiplier[] = L"";
  25. static const WCHAR c_szRegParamParagraph[] = L"Paragraph";
  26. // Styles for edit types
  27. static const WCHAR c_szRegParamLimitText[] = L"LimitText";
  28. static const WCHAR c_szRegParamOEMText[] = L"OEMText";
  29. static const WCHAR c_szRegParamUppercase[] = L"Uppercase";
  30. static const WCHAR c_szRegParamReadOnly[] = L"ReadOnly";