123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //////////////////////////////////////////////////////////////////////////////
- //
- // PCH.H
- //
- //////////////////////////////////////////////////////////////////////////////
- #ifndef _PCH_H_
- #define _PCH_H_
- #define __MODULE__ "Utility"
- //
- // C headers
- //
- #include "stdio.h"
- #include "string.h"
- #include <stdarg.h>
- #include <time.h>
- #include <malloc.h>
- //
- // Windows headers
- //
- #include <windows.h>
- #include <windowsx.h>
- #include <mmsystem.h>
- #ifndef DREAMCAST
- #include <urlmon.h>
- #endif
- //
- // Wintrek headers
- //
- #include "guids.h"
- #include "zlib.h"
- #include "utility.h"
- #include "zauth.h"
- #endif
|