diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /public/dmserializers | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'public/dmserializers')
| -rw-r--r-- | public/dmserializers/idmserializers.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/public/dmserializers/idmserializers.h b/public/dmserializers/idmserializers.h new file mode 100644 index 0000000..f50f8de --- /dev/null +++ b/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 + + |