home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / ODHELP.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  67 lines

  1. /********************************************************************/
  2. /*  Licensed Materials - Property of IBM                            */
  3. /*                                                                  */
  4. /*                                                                  */
  5. /* Copyright (C) International Business Machines Corp., 1994.       */
  6. /* Copyright (C) Apple Computer, Inc., 1994                         */
  7. /*                                                                  */
  8. /*  US Government Users Restricted Rights -                         */
  9. /*  Use, duplication, or disclosure restricted                      */
  10. /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  11. /*                                                                  */
  12. /*                                                                  */
  13. /********************************************************************/
  14.  
  15. #ifndef _ODHELP_
  16. #define _ODHELP_
  17.  
  18. #ifndef _ODOBJECT_
  19. #include "ODObject.idl"      // base class
  20. #endif
  21.  
  22. //=====================================================================================
  23. // Classes defined in this interface
  24. //=====================================================================================
  25.  
  26. interface  ODHelp;
  27.  
  28. //=====================================================================================
  29. // Classes used by this interface
  30. //=====================================================================================
  31.  
  32. interface  ODSession;
  33.  
  34. //=====================================================================================
  35. // ODHelp
  36. //=====================================================================================
  37.  
  38. interface ODHelp : ODObject
  39. {
  40.   void      InitHelp(in ODSession  Session);
  41.   ODBoolean DisplayHelp(in string sHelpFile, in ODULong ulPanelId);
  42.   ODBoolean DisplayHelpIndex ( in string sHelpFile );
  43.   void      TerminateHelp();
  44.  
  45. #ifdef __SOMIDL__
  46.   implementation
  47.   {
  48.   functionprefix = ODHelp;
  49.   override:
  50.     somInit,
  51.     somUninit,
  52.   Purge;
  53.  
  54.     releaseorder:
  55.         InitHelp,
  56.         DisplayHelp,
  57.         DisplayHelpIndex,
  58.         TerminateHelp;
  59.  
  60.  
  61.   };
  62. #endif
  63. };
  64.  
  65. #endif // _ODHELP_
  66.  
  67.