diff options
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/chillout/defines.h')
| -rw-r--r-- | SQLiteStudio3/coreSQLiteStudio/chillout/defines.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/chillout/defines.h b/SQLiteStudio3/coreSQLiteStudio/chillout/defines.h new file mode 100644 index 0000000..59f8db8 --- /dev/null +++ b/SQLiteStudio3/coreSQLiteStudio/chillout/defines.h @@ -0,0 +1,16 @@ +#ifndef CHILLOUTDEFINES_H +#define CHILLOUTDEFINES_H + +#define CHILLOUT_EXIT_CODE 3 + +#define STRINGIZE_(x) #x +#define STRINGIZE(x) STRINGIZE_(x) + +#ifdef _WIN32 +#define WIDEN(quote) WIDEN2(quote) +#define WIDEN2(quote) L##quote +#else +#define WIDEN(quote) quote +#endif + +#endif // CHILLOUTDEFINES_H |
