pch.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // PCH.H
  4. //
  5. //////////////////////////////////////////////////////////////////////////////
  6. #ifndef _PCH_H_
  7. #define _PCH_H_
  8. // __MODULE__ is used by ZAssert
  9. #define __MODULE__ "SoundEngine"
  10. //////////////////////////////////////////////////////////////////////////////
  11. //
  12. // Disable some warnings
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. // 'this' : used in base member initializer list
  16. //#pragma warning(disable : 4355)
  17. // identifier was truncated to '255' characters in the debug information
  18. #pragma warning(disable : 4786)
  19. //////////////////////////////////////////////////////////////////////////////
  20. //
  21. // The include files
  22. //
  23. //////////////////////////////////////////////////////////////////////////////
  24. #include <list>
  25. #include <set>
  26. #include <map>
  27. #include <algorithm>
  28. #include <functional>
  29. #include <vector>
  30. #include <stdio.h>
  31. #include <malloc.h>
  32. #include <windows.h>
  33. #include <dsound.h>
  34. #include "zlib.h"
  35. //#include "fixdelete.h"
  36. #endif