12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*-------------------------------------------------------------------------
- pch.h
-
- Precompiled header for AllClub
-
- Owner:
-
- Copyright 1986-2000 Microsoft Corporation, All Rights Reserved
- *-----------------------------------------------------------------------*/
- #ifndef _ALLCLUB_PCH_
- #define _ALLCLUB_PCH_
- #define ALLCLUB_MODULE 1
- #include <windows.h>
- #include <stdlib.h>
- #include <memory.h>
- #include <sqlext.h>
- #include <dplobby.h>
- // This also includes <atlbase.h> and <atlcom.h>
- #include "AllClubModule.h"
- #define __MODULE__ "AllClub"
- #include <zlib.h>
- #include <utility.h>
- #include <TCLib.h>
- #include <TCAtl.h>
- #include <..\TCAtl\ObjectMap.h>
- #include <..\TCAtl\UserAcct.h>
- #include <..\TCLib\TCThread.h>
- #include "..\fedsrv\fedsrvsql.h"
- #include <guids.h>
- #include "resource.h"
- #include "zone.h"
- #include "messagecore.h"
- #include "ClubMessages.h"
- #include "sharemem.h"
- #include "ClubCounters.h"
- #include "zauth.h"
- //$ ASYNCCLUB
- // #include "clubqueries2.h"
- #include "ClubApp.h"
- #include "ClubClient.h"
- #include "StaticData.h"
- /////////////////////////////////////////////////////////////////////////////
- // This is included very last since it conflicts with <atlwin.h>, included
- // indirectly by <TCAtl.h>.
- //
- #include <windowsx.h> // For GlobalAllocPtr and GlobalFreePtr
- /////////////////////////////////////////////////////////////////////////////
- #endif
|