Added macros support to tools
parent
9c6ca5a3ed
commit
3d15319e3c
|
@ -37,7 +37,8 @@
|
|||
|
||||
// Some portability macros :)
|
||||
#define stricmp strcasecmp
|
||||
|
||||
|
||||
#define FORMATSTRING(formatIndex,va_argsIndex)
|
||||
#else
|
||||
|
||||
#error "You are using an unsupported compiler, you might need to #define some stuff here for your compiler"
|
||||
|
@ -58,6 +59,8 @@
|
|||
#define ALIGN_8
|
||||
#define ALIGN_16
|
||||
*/
|
||||
|
||||
#define FORMATSTRING(formatIndex,va_argsIndex) __attribute__((format (printf, formatIndex, va_argsIndex)))
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
|
||||
// Some portability macros :)
|
||||
#define stricmp strcasecmp
|
||||
|
||||
#define FORMATSTRING(formatIndex,va_argsIndex)
|
||||
|
||||
#else
|
||||
|
||||
|
@ -59,6 +61,9 @@
|
|||
#define ALIGN_16
|
||||
*/
|
||||
|
||||
#define FORMATSTRING(formatIndex,va_argsIndex) __attribute__((format (printf, formatIndex, va_argsIndex)))
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -233,4 +238,4 @@ public:
|
|||
|
||||
#define LOGERROR printf
|
||||
#define LOGINFO printf
|
||||
#define LOGWARNING printf
|
||||
#define LOGWARNING printf
|
||||
|
|
Loading…
Reference in New Issue