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.

33 lines
803 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // VPROJECT.H
  4. //
  5. // Master Header.
  6. //=====================================================================================//
  7. #pragma once
  8. #include <winsock2.h>
  9. #include <windows.h>
  10. #include <windowsx.h>
  11. #include <commctrl.h>
  12. #include <stdio.h>
  13. #include <malloc.h>
  14. #include <richedit.h>
  15. #include <assert.h>
  16. #include <time.h>
  17. #include "resource.h"
  18. #include <sys/stat.h>
  19. #include "sys_utils.h"
  20. #define VPROJECT_VERSION "1.0"
  21. #define VPROJECT_CLASSNAME "VPROJECTCLASS"
  22. #define VPROJECT_TITLE "VProject"
  23. #define VPROJECT_MAGIC "2\\"
  24. #define VPROJECT_REGISTRY "HKEY_CURRENT_USER\\Software\\VProject\\" VPROJECT_MAGIC
  25. #ifdef _DEBUG
  26. #define VPROJECT_BUILDTYPE "Debug"
  27. #else
  28. #define VPROJECT_BUILDTYPE "Release"
  29. #endif