-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.h
42 lines (31 loc) · 781 Bytes
/
global.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
34
35
36
37
38
39
40
41
42
#ifndef GLOBAL_H
#define GLOBAL_H
#if (defined WIN32 || defined _WIN32 || defined __MINGW32__ || defined __CYGWIN__ || defined _MSC_VER)
#define WINDOWS
#endif
#define H 0
#define M3 1
#define M4 2
#define NLINE1 76
#define NLINE2 58
#define CT 250
#define NCT CT+3
#define TICKET 21
#define NTICKET 34
#define NDIALOG 18
#ifndef DBL_EPSILON
#define DBL_EPSILON 0.000000001
#endif
#include <limits.h>
#if INT_MAX < 0x7FFFFFFFL
#error "Only platforms with 32 bits or more are supported."
#endif
enum { SW_ONSTART, SW_OTHER, SW_ALL, SW_NONE, SINGLE_KEY };
#endif
/*
* This file is part of enigma-suite-0.76, which is distributed under the terms
* of the General Public License (GPL), version 2. See doc/COPYING for details.
*
* Copyright (C) 2005 Stefan Krah
*
*/