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.

55 lines
1.1 KiB

  1. #ifndef __HEADERS_HXX_
  2. #define __HEADERS_HXX_
  3. #pragma warning(disable: 4786) // symbol greater than 255 character
  4. #pragma warning(disable: 4514) // unreferenced inline function removed
  5. #pragma warning(disable: 4127) // conditional expression is constant, e.g. while(0)
  6. #pragma warning(disable: 4100) // unreferenced formal parameter
  7. // STL won't build at warning level 4, bump it down to 3
  8. #pragma warning(push, 3)
  9. #include <vector>
  10. #include <map>
  11. #include <list>
  12. #pragma warning(disable: 4702) // unreachable code
  13. #include <algorithm>
  14. #pragma warning(default: 4702) // unreachable code
  15. #include <utility>
  16. // resume compiling at level 4
  17. #pragma warning (pop)
  18. // burnslib
  19. #include <blcore.hpp>
  20. // basic Windows
  21. #include <windows.h>
  22. #include <windowsx.h> // Static_SetText etc.
  23. #include <tstr.h>
  24. // Shell
  25. #include <commctrl.h> // listview
  26. #include <commdlg.h> // file open/save dialogs
  27. // OLE
  28. #include <oaidl.h>
  29. #include <olectl.h>
  30. // object picker
  31. #include <objsel.h>
  32. //
  33. // Local project includes
  34. //
  35. #include "dlg.hxx"
  36. using namespace std;
  37. #endif