Browse Subversion Repository
Contents of /meijiro/HHelp.h
Parent Directory
| Revision Log
Revision 17 -
( show annotations)
( download)
( as text)
Thu Aug 4 21:57:23 2011 UTC
(12 years, 9 months ago)
by kaityo
File MIME type: text/x-chdr
File size: 714 byte(s)
Change dir tree
| 1 |
//--------------------------------------------------------------------------- |
| 2 |
// HTML Help Wrapper |
| 3 |
//--------------------------------------------------------------------------- |
| 4 |
#ifndef HHelpH |
| 5 |
#define HHelpH |
| 6 |
//--------------------------------------------------------------------------- |
| 7 |
class Htmlhelp{ |
| 8 |
private: |
| 9 |
HINSTANCE Handle; |
| 10 |
Htmlhelp(void); |
| 11 |
public: |
| 12 |
~Htmlhelp(void); |
| 13 |
static Htmlhelp * GetInstance(void){ |
| 14 |
static Htmlhelp hhelp; |
| 15 |
return &hhelp; |
| 16 |
}; |
| 17 |
void ShowHtmlHelp(HWND handle,char *helpfile); |
| 18 |
void ShowHtmlHelpSearch(HWND handle,char *helpfile,char *keyword); |
| 19 |
}; |
| 20 |
//--------------------------------------------------------------------------- |
| 21 |
#endif |
|