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.

28 lines
634 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef ILAUNCHABLEDLL_H
  7. #define ILAUNCHABLEDLL_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #define LAUNCHABLE_DLL_INTERFACE_VERSION "launchable_dll_1"
  12. // vmpi_service can use this to debug worker apps in-process,
  13. // and some of the launchers (like texturecompile) use this.
  14. class ILaunchableDLL
  15. {
  16. public:
  17. // All vrad.exe does is load the VRAD DLL and run this.
  18. virtual int main( int argc, char **argv ) = 0;
  19. };
  20. #endif // ILAUNCHABLEDLL_H