22 lines
458 B
C
22 lines
458 B
C
|
|
/*
|
||
|
|
* dbwtech.h --
|
||
|
|
*
|
||
|
|
* Style information for display.
|
||
|
|
* MAXTILESTYLES is the maximum number of styles usable for display
|
||
|
|
* of tiles.
|
||
|
|
*
|
||
|
|
* rcsid $Header: /usr/cvsroot/magic-8.0/dbwind/dbwtech.h,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef _DBWTECH_H
|
||
|
|
#define _DBWTECH_H
|
||
|
|
|
||
|
|
extern TileTypeBitMask *DBWStyleToTypesTbl;
|
||
|
|
|
||
|
|
#define DBWStyleToTypes(s) (DBWStyleToTypesTbl + s)
|
||
|
|
|
||
|
|
/* forward declarations */
|
||
|
|
int DBWTechParseStyle();
|
||
|
|
|
||
|
|
#endif /* _DBWTECH_H */
|