]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - putty.h
Include stdlib.h for exit() - thanks Colin.
[PuTTY.git] / putty.h
diff --git a/putty.h b/putty.h
index 6d5a0a213b6f23ce4a33c71eb016d8177fcd4fa6..026448b729a91843bae4d884431c3535529d19ca 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -243,7 +243,7 @@ enum {
 
 enum {
     /* Bell settings (cfg.beep) */
-    BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE
+    BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE, BELL_PCSPEAKER
 };
 
 enum {
@@ -470,6 +470,7 @@ struct config_tag {
     int stamp_utmp;
     int login_shell;
     int scrollbar_on_left;
+    int shadowbold;
     FontSpec boldfont;
     FontSpec widefont;
     FontSpec wideboldfont;
@@ -844,5 +845,6 @@ Filename filename_from_str(const char *string);
 const char *filename_to_str(const Filename *fn);
 int filename_equal(Filename f1, Filename f2);
 int filename_is_null(Filename fn);
+char *get_username(void);             /* return value needs freeing */
 
 #endif