blob: 85cf00e614eeaf5b5553599f8451503cdcb98060 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
|