forked from amagnasco/xwpe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.h
55 lines (43 loc) · 1.04 KB
/
model.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
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef __MODEL_H
#define __MODEL_H
/* model.h */
/* Copyright (C) 1993 Fred Kruse */
/* This is free software; you can redistribute it and/or */
/* modify it under the terms of the */
/* GNU General Public License, see the file COPYING. */
/*
General Model Definitions */
/* System Definition */
#define UNIX
#undef DJGPP
/* Effects of #Defines (do not change) */
#define CHECKHEADER
#ifdef DJGPP
#define NODEBUGGER
#undef NOPROG
#define NO_XWINDOWS
#define NOPRINTER
#define NONEWSTYLE
#define MOUSE 1
#ifndef UNIX
#define UNIX
#endif
#endif
/* XWindow Definitions */
#if defined(DJGPP) || !defined(NO_XWINDOWS) || defined (HAVE_LIBGPM)
#define MOUSE 1 /* activate mouse */
#else
#define MOUSE 0 /* deactivate mouse */
#endif
/* Programming Environment */
#ifndef NOPROG
#define PROG
#ifndef NODEBUGGER
#define DEBUGGER
#endif
#endif
/* Newstyle only for XWindow */
#if !defined(NO_XWINDOWS) && !defined(NONEWSTYLE)
#define NEWSTYLE
#endif
#endif