summaryrefslogtreecommitdiff
path: root/src/base/main.h
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
commitf1ddc12b68b4e4c8087962de25260470e6df2bea (patch)
tree7d0440a6402a9b0ef75ded23fa64b68534255bba /src/base/main.h
parent6025860a61386bf767b29c3ec5fd0d31285f1056 (diff)
Add tuxanci2 files
Diffstat (limited to 'src/base/main.h')
-rw-r--r--src/base/main.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/base/main.h b/src/base/main.h
deleted file mode 100644
index cf380cd..0000000
--- a/src/base/main.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef MAIN_H
-#define MAIN_H
-
-#ifdef NLS
-#include <libintl.h>
-#include <locale.h>
-#endif /* NLS */
-
-#include "bool.h"
-#include "string_length.h"
-#include "path.h"
-
-#define WINDOW_SIZE_X 800
-#define WINDOW_SIZE_Y 600
-
-#ifdef NLS
-#define _(text) gettext(text)
-#else /* NLS */
-#define _(text) (text)
-#endif /* NLS */
-
-#include "msg.h"
-
-#ifndef __WIN32__
-#define PATH_SEPARATOR "/"
-#else /* __WIN32__ */
-#define PATH_SEPARATOR "\\"
-#endif /* __WIN32__ */
-
-extern char *getParam(char *s);
-extern char *getParamElse(char *s1, char *s2);
-extern bool_t isParamFlag(char *s);
-extern char *get_program_name();
-extern char *getString(int n);
-extern char *get_string_static(int n);
-extern int *newInt(int x);
-extern int isFillPath(const char *path);
-extern void accessExistFile(const char *s);
-extern int tryExistFile(const char *s);
-
-#endif /* MAIN_H */