pch.h 602 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // PCH.H
  4. //
  5. //////////////////////////////////////////////////////////////////////////////
  6. #ifndef _PCH_H_
  7. #define _PCH_H_
  8. #define __MODULE__ "Utility"
  9. //
  10. // C headers
  11. //
  12. #include "stdio.h"
  13. #include "string.h"
  14. #include <stdarg.h>
  15. #include <time.h>
  16. #include <malloc.h>
  17. //
  18. // Windows headers
  19. //
  20. #include <windows.h>
  21. #include <windowsx.h>
  22. #include <mmsystem.h>
  23. #ifndef DREAMCAST
  24. #include <urlmon.h>
  25. #endif
  26. //
  27. // Wintrek headers
  28. //
  29. #include "guids.h"
  30. #include "zlib.h"
  31. #include "utility.h"
  32. #include "zauth.h"
  33. #endif