forked from feartec/benzin
-
Notifications
You must be signed in to change notification settings - Fork 9
/
general.h
24 lines (20 loc) · 1.29 KB
/
general.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/******************************************************************************
* general.h *
* Part of Benzin *
* Handles general stuff. *
* Copyright (C)2009 SquidMan (Alex Marshall) <[email protected]> *
* Copyright (C)2009 megazig (Stephen Simpson) <[email protected]> *
* Copyright (C)2009 Matt_P (Matthew Parlane) *
* Copyright (C)2009 comex *
* Copyright (C)2009 booto *
* All Rights Reserved, HACKERCHANNEL. *
******************************************************************************/
#define BENZIN_VERSION_MAJOR 2
#define BENZIN_VERSION_MINOR 1
#define BENZIN_VERSION_BUILD 11
#define BENZIN_VERSION_OTHER "BETA"
#define INFORMATION_TEXT \
"Benzin %d.%d.%d%s.\n" \
"Written by SquidMan (Alex Marshall), comex, and megazig.\n" \
"(c) 2009 HACKERCHANNEL\n", BENZIN_VERSION_MAJOR, BENZIN_VERSION_MINOR, BENZIN_VERSION_BUILD, BENZIN_VERSION_OTHER
#define fatal(x) printf(x); exit(1)