-
Notifications
You must be signed in to change notification settings - Fork 5
/
vars.h
33 lines (27 loc) · 1.04 KB
/
vars.h
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
#ifndef _VARS_H
#define _VARS_H
/*
Steam API Interface
Developer: sk0r / Czybik
Version: v0.1 (Steam-API v015) 13th August, 2014
Contact: Czybik_Stylez@gmx.de
See readme.txt for more details
File: vars.h: Global stuff interface*
*/
//======================================================================
#define PROGRAM_NAME "Steam Name Changer"
#define PROGRAM_VERSON "\'v1.0 (Steam-API v015) 13th August, 2014\'"
#define PROGRAM_AUTHOR "sk0r / Czybik, Bluscream, Rektinator"
#define PROGRAM_CONTACT "Czybik_Stylez@gmx.de"
#define PROGRAM_INFO PROGRAM_NAME " version " PROGRAM_VERSON " developed by " PROGRAM_AUTHOR " (" PROGRAM_CONTACT ")"
//======================================================================
#define ENABLED 1
#define RANDOM 0
#define BYGAME 1
#define NC_TIMETOWAIT 1000
//======================================================================
extern char g_szAppPath[MAX_PATH];
extern CAccessSteamAPI g_oSteamAPI;
extern CNameChanger g_oNameChanger;
//======================================================================
#endif