comparison urogue/rogue.h @ 259:096d3cfd9afd

UltraRogue: add the -n option.
author John "Elwin" Edwards
date Thu, 09 Feb 2017 16:29:45 -0500
parents c4b12d2d1dcd
children 08057be02f47
comparison
equal deleted inserted replaced
258:2908dc47f9e2 259:096d3cfd9afd
1684 extern int firstmove; /* First move after setting door_stop */ 1684 extern int firstmove; /* First move after setting door_stop */
1685 extern int waswizard; /* Was a wizard sometime */ 1685 extern int waswizard; /* Was a wizard sometime */
1686 extern int canwizard; /* Will be permitted to do this */ 1686 extern int canwizard; /* Will be permitted to do this */
1687 extern int askme; /* Ask about unidentified things */ 1687 extern int askme; /* Ask about unidentified things */
1688 extern int moving; /* move using 'm' command */ 1688 extern int moving; /* move using 'm' command */
1689 extern int use_savedir; /* Savefile is in system savedir */
1689 1690
1690 extern int inv_type; /* Inven style. Bool so options works */ 1691 extern int inv_type; /* Inven style. Bool so options works */
1691 extern char take; /* Thing the rogue is taking */ 1692 extern char take; /* Thing the rogue is taking */
1692 extern char PLAYER; /* what the player looks like */ 1693 extern char PLAYER; /* what the player looks like */
1693 extern char prbuf[]; /* Buffer for sprintfs */ 1694 extern char prbuf[]; /* Buffer for sprintfs */
1807 /* mdport.c */ 1808 /* mdport.c */
1808 char *md_strdup(const char *s); 1809 char *md_strdup(const char *s);
1809 long md_random(void); 1810 long md_random(void);
1810 void md_srandom(long seed); 1811 void md_srandom(long seed);
1811 int md_readchar(WINDOW *win); 1812 int md_readchar(WINDOW *win);
1813 int md_getuid(void);
1812 1814
1813 #define NOOP(x) (x += 0) 1815 #define NOOP(x) (x += 0)
1814 #define CCHAR(x) ( (char) (x & A_CHARTEXT) ) 1816 #define CCHAR(x) ( (char) (x & A_CHARTEXT) )