diff 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
line wrap: on
line diff
--- a/urogue/rogue.h	Wed Feb 08 19:50:36 2017 -0500
+++ b/urogue/rogue.h	Thu Feb 09 16:29:45 2017 -0500
@@ -1686,6 +1686,7 @@
 extern int canwizard;      /* Will be permitted to do this */
 extern int askme;          /* Ask about unidentified things */
 extern int moving;         /* move using 'm' command */
+extern int use_savedir;    /* Savefile is in system savedir */
 
 extern int inv_type;       /* Inven style. Bool so options works */
 extern char take;           /* Thing the rogue is taking */
@@ -1809,6 +1810,7 @@
 long md_random(void);
 void md_srandom(long seed);
 int md_readchar(WINDOW *win);
+int md_getuid(void);
 
 #define NOOP(x) (x += 0)
 #define CCHAR(x) ( (char) (x & A_CHARTEXT) )