Source code of Windows XP (NT5)
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.

45 lines
1.4 KiB

  1. //----------------------------------------------------------------------------
  2. //
  3. // .ini file support.
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999-2000.
  6. //
  7. //----------------------------------------------------------------------------
  8. #ifndef _INI_HPP_
  9. #define _INI_HPP_
  10. #define INI_DIR "Init"
  11. #define INI_FILE "\\TOOLS.INI"
  12. #define NTINI_DEBUGCHILDREN 1
  13. #define NTINI_DEBUGOUTPUT 2
  14. #define NTINI_STOPFIRST 3
  15. #define NTINI_VERBOSEOUTPUT 4
  16. #define NTINI_LAZYLOAD 5
  17. #define NTINI_TRUE 6
  18. #define NTINI_FALSE 7
  19. #define NTINI_USERREG0 8
  20. #define NTINI_USERREG1 9
  21. #define NTINI_USERREG2 10
  22. #define NTINI_USERREG3 11
  23. #define NTINI_USERREG4 12
  24. #define NTINI_USERREG5 13
  25. #define NTINI_USERREG6 14
  26. #define NTINI_USERREG7 15
  27. #define NTINI_USERREG8 16
  28. #define NTINI_USERREG9 17
  29. #define NTINI_STOPONPROCESSEXIT 18
  30. #define NTINI_SXD 19
  31. #define NTINI_SXE 20
  32. #define NTINI_INIFILE 21
  33. #define NTINI_DEFAULTEXT 22
  34. #define NTINI_LINES 23
  35. #define NTINI_SRCOPT 24
  36. #define NTINI_SRCPATHA 25
  37. #define NTINI_INVALID 26
  38. #define NTINI_END 27
  39. void ReadIniFile(PULONG DebugType);
  40. #endif // #ifndef _INI_HPP_