Source:NetHack 3.0.0/msdos.h

From NetHackWiki
Jump to navigation Jump to search

Below is the full text to msdos.h from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/msdos.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: @(#)msdos.h	3.0	88/07/21
2.    /* msdos.h - function declarations for msdos.c */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    #ifndef MSDOS_H
6.    #define MSDOS_H
7.    
8.    #ifdef TOS
9.    #define msmsg	cprintf
10.   #endif
11.   extern const char *alllevels, *allbones;
12.   extern char levels[], bones[], permbones[], SAVEF[], hackdir[];
13.   extern int ramdisk;
14.   #if defined(DGK) && !defined(TOS)
15.   extern int count_only;
16.   #endif
17.   
18.   #define CTRL(ch) (ch & 0x37)
19.   #define ABORT CTRL('A')
20.   #define COUNT 0x1
21.   #define WRITE 0x2
22.   
23.   #endif /* MSDOS_H /* */