#include "wx/wx.h"
#endif
-#include <wx/html/helpdata.h>
+#include "wx/html/helpdata.h"
class MyApp : public wxApp
for (int i = 1; i < argc; i++)
{
wxHtmlHelpData data;
- wxPrintf("Processing %s...\n", argv[i]);
+ wxPrintf(_T("Processing %s...\n"), argv[i]);
data.SetTempDir(wxPathOnly(argv[i]));
data.AddBook(argv[i]);
}
- return FALSE;
+ return false;
}