home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / os2cl016.zip / pmhelp.h < prev    next >
C/C++ Source or Header  |  1995-11-24  |  750b  |  36 lines

  1. /* 
  2.  
  3.  
  4.     pmhelp.h (emx+gcc) 
  5.  
  6.     1995 Giovanni Iachello
  7.     This is freeware software. You can use or modify it as you wish,
  8.     provided that the part of code that I wrote remains freeware.
  9.     Freeware means that the source code must be available on request 
  10.     to anyone.
  11.     You must also include this notice in all files derived from this
  12.     file.
  13.  
  14.  
  15. */
  16. #ifndef _PMHELP_H_
  17. #define _PMHELP_H_
  18.  
  19.  
  20. class PMHelpWin : public PMWin 
  21. {
  22.     HELPINIT hiInit;
  23. public:
  24.     PMHelpWin(PSZ title,PSZ library,USHORT id,HAB hab);
  25.     PMHelpWin(PSZ title,PSZ library,PHELPTABLE pht,HAB hab);
  26.     ~PMHelpWin();
  27.     BOOL createWin();    
  28.     BOOL destroyWin();
  29. };
  30.  
  31. BOOL helpHook ( HAB habAnchor, SHORT sMode, USHORT usTopic, USHORT usSubTopic, PRECTL prclPos );
  32.  
  33.  
  34. #endif
  35.  
  36.