File: map.h

package info (click to toggle)
chos 0.82-2
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 1,024 kB
  • ctags: 968
  • sloc: ansic: 4,180; asm: 2,103; tcl: 1,976; makefile: 152; sh: 79
file content (22 lines) | stat: -rw-r--r-- 385 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
21
22
/*
 * include/map.h
 *
 * Copyright (c) Tuomo Valkonen 1996-1998.
 */
  
#ifndef _MAP_H
#define _MAP_H

#include "mapfile.h"

extern GEOMETRY		mapgeo;
extern int		finish_map();
extern void		map_initialize();
extern int		map_get_sector(MF_KernelSector**);
extern int		resize(int,int);

extern MF_KernelSector**map;
extern MF_HeaderSector* mh; // =*map
extern MF_ImageSector*	im;

#endif