Source:NetHack 3.3.0/lev.h

From NetHackWiki
Revision as of 10:47, 4 March 2008 by Kernigh bot (talk | contribs) (NetHack 3.3.0/lev.h moved to Source:NetHack 3.3.0/lev.h: Robot: moved page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to lev.h from the source code of NetHack 3.3.0. To link to a particular line, write [[NetHack 3.3.0/lev.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

1.    /*	SCCS Id: @(#)lev.h	3.3	94/03/18	*/
2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    /*	Common include file for save and restore routines */
6.    
7.    #ifndef LEV_H
8.    #define LEV_H
9.    
10.   #define COUNT_SAVE	0x1
11.   #define WRITE_SAVE	0x2
12.   #define FREE_SAVE	0x4
13.   
14.   /* operations of the various saveXXXchn & co. routines */
15.   #define perform_bwrite(mode)	((mode) & (COUNT_SAVE|WRITE_SAVE))
16.   #define release_data(mode)	((mode) & FREE_SAVE)
17.   
18.   #endif /* LEV_H */