]>
git.saurik.com Git - wxWidgets.git/blob - utils/hhp2cached/hhp2cached.cpp
2 Converts hhp (HTML Help Workshop) files into cached
3 version for faster reading
5 Usage: hhp2cached file.hhp [file2.hhp ...]
11 #include <wx/html/helpdata.h>
14 class MyApp
: public wxApp
17 virtual bool OnInit();
24 for (int i
= 1; i
< argc
; i
++)
27 wxPrintf("Processing %s...\n", argv
[i
]);
28 data
.SetTempDir(wxPathOnly(argv
[i
]));
29 data
.AddBook(argv
[i
]);