blob: f50f8dee19511ec7e7cc5fcbe1a9cc7bab8f1a41 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// The copyright to the contents herein is the property of Valve, L.L.C.
// The contents may be used and/or copied only with the written permission of
// Valve, L.L.C., or in accordance with the terms and conditions stipulated in
// the agreement/contract under which the contents have been supplied.
//
// $Header: $
// $NoKeywords: $
//
// Main header file for the serializers DLL
//
//=============================================================================
#ifndef IDMSERIALIZERS_H
#define IDMSERIALIZERS_H
#ifdef _WIN32
#pragma once
#endif
#include "appframework/IAppSystem.h"
//-----------------------------------------------------------------------------
// Interface
//-----------------------------------------------------------------------------
class IDmSerializers : public IAppSystem
{
};
//-----------------------------------------------------------------------------
// Used only by applications to hook in DmSerializers
//-----------------------------------------------------------------------------
#define DMSERIALIZERS_INTERFACE_VERSION "VDmSerializers001"
//-----------------------------------------------------------------------------
// Singleton
//-----------------------------------------------------------------------------
extern IDmSerializers *g_pDmSerializers;
#endif // DMSERIALIZERS_H
|