diff options
| -rw-r--r-- | Bobi.h | 5 | 
1 files changed, 4 insertions, 1 deletions
@@ -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 *);  | 
