[go: up one dir, main page]

File: common.h

package info (click to toggle)
lincity 1.11-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,488 kB
  • ctags: 2,641
  • sloc: cpp: 24,598; makefile: 245; sh: 32; perl: 10
file content (20 lines) | stat: -rwxr-xr-x 411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// common.h    part of lin-city
// Copyright (c) I J Peters 1995,1996.  Please read the file 'COPYRIGHT'.
#ifndef __common_h__
#define __common_h__

#ifdef LC_X11
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/Xutil.h>
#include "lcx11.h"
#elif defined WIN32
#include <windows.h>
#include "lcwin32.h"
#else
#include <vga.h>
#include <vgagl.h>
#include <vgamouse.h>
#endif

#endif