Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

  1. //=========== (C) Copyright 1999 Valve, L.L.C. All rights reserved. ===========
  2. //
  3. // The copyright to the contents herein is the property of Valve, L.L.C.
  4. // The contents may be used and/or copied only with the written permission of
  5. // Valve, L.L.C., or in accordance with the terms and conditions stipulated in
  6. // the agreement/contract under which the contents have been supplied.
  7. //
  8. // $Header: $
  9. // $NoKeywords: $
  10. //
  11. // Main header file for the serializers DLL
  12. //
  13. //=============================================================================
  14. #ifndef IDMSERIALIZERS_H
  15. #define IDMSERIALIZERS_H
  16. #ifdef _WIN32
  17. #pragma once
  18. #endif
  19. #include "appframework/IAppSystem.h"
  20. //-----------------------------------------------------------------------------
  21. // Interface
  22. //-----------------------------------------------------------------------------
  23. class IDmSerializers : public IAppSystem
  24. {
  25. };
  26. //-----------------------------------------------------------------------------
  27. // Used only by applications to hook in DmSerializers
  28. //-----------------------------------------------------------------------------
  29. #define DMSERIALIZERS_INTERFACE_VERSION "VDmSerializers001"
  30. //-----------------------------------------------------------------------------
  31. // Singleton
  32. //-----------------------------------------------------------------------------
  33. extern IDmSerializers *g_pDmSerializers;
  34. #endif // DMSERIALIZERS_H