Support for New Session, Duplicate Session and the Saved Sessions
[sgt/putty] / unix / ptermm.c
index 128f310..84510e7 100644 (file)
@@ -7,6 +7,10 @@
 
 #include "putty.h"
 
+const char *const appname = "pterm";
+const int use_event_log = 0;          /* pterm doesn't need it */
+const int new_session = 0, saved_sessions = 0;   /* or these */
+
 Backend *select_backend(Config *cfg)
 {
     return &pty_backend;
@@ -17,11 +21,6 @@ int cfgbox(Config *cfg)
     return 1;                         /* no-op in pterm */
 }
 
-void fatal_message_box(void *window, char *msg)
-{
-    /* also a no-op in pterm */
-}
-
 void cleanup_exit(int code)
 {
     exit(code);