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.

90 lines
3.7 KiB

  1. #ifndef _SIF_H_
  2. #define _SIF_H_
  3. extern const WCHAR pwGuiUnattended[];
  4. extern const WCHAR pwUserData[];
  5. extern const WCHAR pwUnattended[];
  6. extern const WCHAR pwAccessibility[];
  7. extern const WCHAR pwProgram[];
  8. extern const WCHAR pwArgument[];
  9. extern const WCHAR pwServer[];
  10. extern const WCHAR pwTimeZone[];
  11. extern const WCHAR pwGuiRunOnce[];
  12. extern const WCHAR pwCompatibility[];
  13. extern const WCHAR pwAutoLogon[];
  14. extern const WCHAR pwProfilesDir[];
  15. extern const WCHAR pwProgramFilesDir[];
  16. extern const WCHAR pwCommonProgramFilesDir[];
  17. extern const WCHAR pwProgramFilesX86Dir[];
  18. extern const WCHAR pwCommonProgramFilesX86Dir[];
  19. extern const WCHAR pwWaitForReboot[];
  20. extern const WCHAR pwFullName[];
  21. extern const WCHAR pwOrgName[];
  22. extern const WCHAR pwCompName[];
  23. extern const WCHAR pwAdminPassword[];
  24. extern const WCHAR pwProdId[];
  25. extern const WCHAR pwProductKey[];
  26. extern const WCHAR pwMode[];
  27. extern const WCHAR pwUnattendMode[];
  28. extern const WCHAR pwAccMagnifier[];
  29. extern const WCHAR pwAccReader[];
  30. extern const WCHAR pwAccKeyboard[];
  31. extern const WCHAR pwNull[];
  32. extern const WCHAR pwExpress[];
  33. extern const WCHAR pwTime[];
  34. extern const WCHAR pwProduct[];
  35. extern const WCHAR pwMsDos[];
  36. extern const WCHAR pwWin31Upgrade[];
  37. extern const WCHAR pwWin95Upgrade[];
  38. extern const WCHAR pwBackupImage[];
  39. extern const WCHAR pwServerUpgrade[];
  40. extern const WCHAR pwNtUpgrade[];
  41. extern const WCHAR pwBootPath[];
  42. extern const WCHAR pwLanmanNt[];
  43. extern const WCHAR pwServerNt[];
  44. extern const WCHAR pwWinNt[];
  45. extern const WCHAR pwNt[];
  46. extern const WCHAR pwInstall[];
  47. extern const WCHAR pwUnattendSwitch[];
  48. extern const WCHAR pwRunOobe[];
  49. extern const WCHAR pwReferenceMachine[];
  50. extern const WCHAR pwOptionalDirs[];
  51. extern const WCHAR pwUXC[];
  52. extern const WCHAR pwSkipMissing[];
  53. extern const WCHAR pwIncludeCatalog[];
  54. extern const WCHAR pwDrvSignPol[];
  55. extern const WCHAR pwNonDrvSignPol[];
  56. extern const WCHAR pwYes[];
  57. extern const WCHAR pwNo[];
  58. extern const WCHAR pwZero[];
  59. extern const WCHAR pwOne[];
  60. extern const WCHAR pwIgnore[];
  61. extern const WCHAR pwWarn[];
  62. extern const WCHAR pwBlock[];
  63. extern const WCHAR pwData[];
  64. extern const WCHAR pwSetupParams[];
  65. extern const WCHAR pwSrcType[];
  66. extern const WCHAR pwSrcDir[];
  67. extern const WCHAR pwCurrentDir[];
  68. extern const WCHAR pwDosDir[];
  69. extern const WCHAR pwGuiAttended[];
  70. extern const WCHAR pwProvideDefault[];
  71. extern const WCHAR pwDefaultHide[];
  72. extern const WCHAR pwReadOnly[];
  73. extern const WCHAR pwFullUnattended[];
  74. extern const WCHAR pwEulaDone[];
  75. #define ArcPrefixLen (lstrlen(pwArcPrefix))
  76. #define NtPrefixLen (lstrlen(pwNtPrefix))
  77. #define ISUNC(sz) ((BOOL)(sz != NULL && lstrlen(sz) > 3 && \
  78. *sz == L'\\' && *(sz+1) == L'\\'))
  79. extern const WCHAR pwArcType[];
  80. extern const WCHAR pwDosType[];
  81. extern const WCHAR pwUncType[];
  82. extern const WCHAR pwNtType[];
  83. extern const WCHAR pwArcPrefix[];
  84. extern const WCHAR pwNtPrefix[];
  85. extern const WCHAR pwLocalSource[];
  86. extern const WCHAR pwException[];
  87. #endif