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.

27 lines
815 B

  1. // headers.hxx
  2. // Level 4 warnings which need to be disabled to pass the Windows header
  3. // files (allowing me to use Level 4 on my own code)
  4. #pragma warning(disable: 4514) // removal of unref'd inline function
  5. #pragma warning(disable: 4201) // nameless union/struct
  6. #pragma warning(disable: 4100) // unreferenced formal parameters
  7. #pragma warning(disable: 4699) // use of precompiled header
  8. #pragma warning(disable: 4204) // non-constant struct intializers
  9. #define INC_OLE2
  10. #include <windows.h>
  11. #include <ole2.h>
  12. #include <assert.h>
  13. #include <memory.h>
  14. #include <stdarg.h>
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18. #include "davedbg.h"
  19. #include "genenum.h"
  20. #include "genforc.hxx"
  21. #include "ctest.hxx"
  22. #include "bmpfile.hxx"
  23. #include "ctestapp.hxx"