diff options
| author | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-23 00:09:21 +0200 |
|---|---|---|
| committer | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-23 00:09:21 +0200 |
| commit | 6a0565944376426ded71849df09527da077dfc94 (patch) | |
| tree | 2f9e1f664febc298b61626a613366330dfe0bd6e /src/base/main.h | |
| parent | 130d45bfc935da1702a7b5c246a099ea3b4a0bdf (diff) | |
Ups forget to fix header files.
Diffstat (limited to 'src/base/main.h')
| -rw-r--r-- | src/base/main.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/base/main.h b/src/base/main.h index 3555550..9b0f59c 100644 --- a/src/base/main.h +++ b/src/base/main.h @@ -1,28 +1,28 @@ #ifndef MAIN_H - #define MAIN_H - #define WINDOW_SIZE_X 800 - #define WINDOW_SIZE_Y 600 +#define MAIN_H +#define WINDOW_SIZE_X 800 +#define WINDOW_SIZE_Y 600 #ifdef NLS - #define _(text) gettext(text) +#define _(text) gettext(text) #else - #define _(text) (text) +#define _(text) (text) #endif #ifdef NLS - #include <libintl.h> - #include <locale.h> +#include <libintl.h> +#include <locale.h> #endif - #include "bool.h" - #include "string_length.h" - #include "path.h" +#include "bool.h" +#include "string_length.h" +#include "path.h" - extern char* getParam(char *s); - extern char* getParamElse(char *s1, char *s2); - extern bool_t isParamFlag(char *s); - extern char *getString(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); +extern char *getParam(char *s); +extern char *getParamElse(char *s1, char *s2); +extern bool_t isParamFlag(char *s); +extern char *getString(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 |