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.

67 lines
1.5 KiB

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. //
  3. // all library header files
  4. //
  5. // 12-12-97 sburns
  6. #ifndef BURNSLIB_HPP_INCLUDED
  7. #define BURNSLIB_HPP_INCLUDED
  8. #if !defined(__cplusplus)
  9. #error This module must be compiled as C++
  10. #endif
  11. #if !defined(UNICODE)
  12. #error This module must be compiled UNICODE. (add -DUNICODE to C_DEFINES in sources file)
  13. #endif
  14. #include "blcore.hpp"
  15. #include "EncryptedString.hpp"
  16. #include "containers.hpp"
  17. #include "error.hpp"
  18. #include "win.hpp"
  19. #include "callback.hpp"
  20. #include "filesys.hpp"
  21. #include "extract.hpp"
  22. #include "computer.hpp"
  23. #include "dialog.hpp"
  24. #include "proppage.hpp"
  25. #include "wizpage.hpp"
  26. #include "wizard.hpp"
  27. #include "dns.hpp"
  28. #include "registry.hpp"
  29. #include "bits.hpp"
  30. #include "popup.hpp"
  31. #include "safedll.hpp"
  32. #include "service.hpp"
  33. #include "args.hpp"
  34. #include "dsutil.hpp"
  35. #include "netutil.hpp"
  36. #include "dllref.hpp"
  37. #include "tempfact.hpp"
  38. #include "utility.hpp"
  39. #include "burnslib.h"
  40. #include "AutoTokenPrivileges.hpp"
  41. // Your DllMain or WinMain must initialize this data to the name of the
  42. // helpfile containing context help (help the popup up in response to right
  43. // clicking a control, or pressing F1) for classes derived from Dialog.
  44. //
  45. // The path is relative to the System Windows Directory, so you will
  46. // typically need to include the help subdirectory.
  47. //
  48. // e.g. HELPFILE_NAME = L"\\help\\myhelp.hlp";
  49. extern const wchar_t* HELPFILE_NAME;
  50. #endif // BURNSLIB_HPP_INCLUDED