Team Fortress 2 Source Code as on 22/4/2020
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.

18 lines
447 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Function to call ShellExecute on the .exe version of the current executable
  4. // intended for a .com/.exe pair named the same thing to enable a hybrid
  5. // console/gui app
  6. //
  7. //=============================================================================
  8. #ifndef RUN_EXE_H
  9. #define RUN_EXE_H
  10. #if COMPILER_MSVC
  11. #pragma once
  12. #endif
  13. void RunExe();
  14. #endif // RUN_EXE_H