[go: up one dir, main page]

File: common.h

package info (click to toggle)
lincity 1.13.1-17
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 7,340 kB
  • sloc: ansic: 32,746; sh: 8,578; makefile: 584; perl: 445; yacc: 316; sed: 16
file content (28 lines) | stat: -rw-r--r-- 639 bytes parent folder | download | duplicates (9)
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
/* ---------------------------------------------------------------------- *
 * common.h
 * This file is part of lincity.
 * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001.
 * ---------------------------------------------------------------------- */
#ifndef __common_h__
#define __common_h__

#ifdef LC_X11
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/Xutil.h>
#include "lin-city.h"
#include "lcx11.h"

#elif defined WIN32
#include <windows.h>
#include "lcwin32.h"

#elif defined SVGALIB
#include <vga.h>
#include <vgagl.h>
#include <vgamouse.h>
#include "lcsvga.h"

#endif

#endif	/* __common_h__ */