]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/buffer.h
wxchar.h doesn't have to be C file anymore, it's C++
[wxWidgets.git] / include / wx / buffer.h
index 7f61793f04eaa6364471ab6805552a2496988215..6d50b2a0a9035ac69bb4d9e46727b04a1653580d 100644 (file)
 #ifndef _WX_BUFFER_H
 #define _WX_BUFFER_H
 
-#include "wx/wxchar.h"
+#include "wx/chartype.h"
+#include "wx/wxcrt.h"
 
 #include <stdlib.h>             // malloc() and free()
 
+class WXDLLIMPEXP_BASE wxCStrData;
+
 inline char *wxStrDup(const char *s) { return wxStrdupA(s); }
 #if wxUSE_WCHAR_T
     inline wchar_t *wxStrDup(const wchar_t *ws) { return wxStrdupW(ws); }