home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / STATUS.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  65 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 _STATUS_
  16. #define _STATUS_
  17.  
  18. #ifndef _EXTENSN_
  19. #include "Extensn.idl"
  20. #endif
  21.  
  22. //==============================================================================
  23. // Theory of Operation
  24. //==============================================================================
  25.  
  26. /*
  27.   ODExtension is implemented as a subclass of ODExtension.
  28. */
  29.  
  30. //==============================================================================
  31. // Classes defined in this interface
  32. //==============================================================================
  33.  
  34. interface   ODStatusLineExtension;
  35.  
  36. //==============================================================================
  37. // Classes used by this interface
  38. //==============================================================================
  39.  
  40. // interface   ODFacet;
  41. interface   ODSession;
  42.  
  43. //==============================================================================
  44. // ODExtension
  45. //==============================================================================
  46.  
  47. interface ODStatusLineExtension : ODExtension
  48. {
  49.    ODBoolean SetStatusLineText(in string str, in ODFrame reqFrame);
  50.    void InitStatusLineExtension(in ODSession  owner);
  51. #ifdef __SOMIDL__
  52.   implementation
  53.   {
  54.  
  55.     functionprefix = ODStatusLineExtension;
  56.  
  57.   releaseorder:
  58.      SetStatusLineText
  59.    ,InitStatusLineExtension;
  60.  
  61.   };
  62. #endif
  63. };
  64. #endif
  65.