diff options
| author | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
| commit | 39ed87570bdb2f86969d4be821c94b722dc71179 (patch) | |
| tree | abc53757f75f40c80278e87650ea92808274aa59 /mp/src/public/dmserializers | |
| download | source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip | |
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/public/dmserializers')
| -rw-r--r-- | mp/src/public/dmserializers/idmserializers.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/mp/src/public/dmserializers/idmserializers.h b/mp/src/public/dmserializers/idmserializers.h new file mode 100644 index 00000000..a47d75ef --- /dev/null +++ b/mp/src/public/dmserializers/idmserializers.h @@ -0,0 +1,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
+
+
|