blob: 65ffd7b82a57141dcc378e6e4685b531f66621e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef GC_SCHEMA_H
#define GC_SCHEMA_H
#ifdef _WIN32
#pragma once
#endif
#include "tier0/platform.h"
#include "steam/steamtypes.h"
#include "tier0/dbg.h"
// include this before checksum_crc specifically to avoid the
// CRC references
#include "steam/steamclientpublic.h"
#include "tier1/utlmap.h"
#include "tier1/utlstring.h"
#include "tier1/utlbuffer.h"
#include "tier1/mempool.h"
#include "tier1/tsmempool.h"
#include "tier1/tsmultimempool.h"
#include "tier1/fmtstr.h"
#include "vstdlib/coroutine.h"
// public stuff
#include "gamecoordinator/igcsqlresultsetlist.h"
// These are first since they're used all over
#include "gcconstants.h"
#include "refcount.h"
// SQL Access stuff
#include "sqlaccess/record.h"
#include "sqlaccess/schema.h"
#include "sqlaccess/recordinfo.h"
#include "sqlaccess/schemafull.h"
#endif
|