summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Bobi.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Bobi.h b/Bobi.h
index 102573a..f3993f4 100644
--- a/Bobi.h
+++ b/Bobi.h
@@ -14,6 +14,9 @@
#include <stdio.h>
#include <string.h>
+#define MIN(a,b) ((a)<(b)?(a):(b))
+#define MAX(a,b) ((a)>(b)?(a):(b))
+
#define ClearMem(buf,len) memset(buf, 0, len)
@@ -225,7 +228,7 @@ void LoadConfigFile(char *);
/***** Misc.c: *****/
-void ShowMonoReq2(char *);
+void ShowMonoReq2(char *,...);
BOOL ShowRequest2(char *,char *);
void ShowFileError(char *);
BPTR OpenNewFileSafely(char *);