do not use preprocessor macros in interface headers; doxygen doesn't know about preprocessor symbols used in the real headers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58711 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-02-07 15:09:48 +00:00
parent 71df21e7d3
commit 9a6fda2288
3 changed files with 78 additions and 83 deletions

View File

@@ -31,13 +31,7 @@ enum wxIPCFormat
wxIPC_LOCALE = 16,
wxIPC_UTF8TEXT = 17,
wxIPC_UTF32TEXT = 18,
#if SIZEOF_WCHAR_T == 2
wxIPC_UNICODETEXT = wxIPC_UTF16TEXT,
#elif SIZEOF_WCHAR_T == 4
wxIPC_UNICODETEXT = wxIPC_UTF32TEXT,
#else
# error "Unknown wchar_t size"
#endif
wxIPC_UNICODETEXT,
wxIPC_PRIVATE = 20
};