diff options
Diffstat (limited to 'utils/vproject/vproject.h')
| -rw-r--r-- | utils/vproject/vproject.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/utils/vproject/vproject.h b/utils/vproject/vproject.h new file mode 100644 index 0000000..85cf00e --- /dev/null +++ b/utils/vproject/vproject.h @@ -0,0 +1,33 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// VPROJECT.H +// +// Master Header. +//=====================================================================================// +#pragma once + +#include <winsock2.h> +#include <windows.h> +#include <windowsx.h> +#include <commctrl.h> +#include <stdio.h> +#include <malloc.h> +#include <richedit.h> +#include <assert.h> +#include <time.h> +#include "resource.h" +#include <sys/stat.h> +#include "sys_utils.h" + +#define VPROJECT_VERSION "1.0" +#define VPROJECT_CLASSNAME "VPROJECTCLASS" +#define VPROJECT_TITLE "VProject" +#define VPROJECT_MAGIC "2\\" +#define VPROJECT_REGISTRY "HKEY_CURRENT_USER\\Software\\VProject\\" VPROJECT_MAGIC +#ifdef _DEBUG +#define VPROJECT_BUILDTYPE "Debug" +#else +#define VPROJECT_BUILDTYPE "Release" +#endif + + |