00001 00002 00003 00004 00005 00006 00007 #ifndef __FORMAT_STRING_H 00008 #define __FORMAT_STRING_H 00009 00010 #include "Export.h" 00011 00012 extern "C" { 00013 char * FormatString(const char *format, ...); 00014 } 00015 // Threadsafe 00016 extern "C" { 00017 char * FormatStringTS(char *output, const char *format, ...); 00018 } 00019 00020 00021 #endif 00022