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

  1.  
  2. //  Module Header
  3. //
  4. //  Module Name: WPICON
  5. //
  6. //  OS/2 Presentation Manager Workplace class definitions
  7. //
  8. //  Copyright (c) International Business Machines Corporation 1991, 1992
  9. //
  10.  
  11. #ifndef wpicon_idl
  12. #define wpicon_idl
  13.  
  14. #include "wpdataf.idl"
  15. #include <somcls.idl>
  16.  
  17. interface M_WPIcon;
  18.  
  19. interface WPIcon : WPDataFile
  20.  
  21. {
  22.  
  23. #ifdef __SOMIDL__
  24.   implementation {
  25.  
  26.     externalstem = wpico;
  27.     local;
  28.     externalprefix = ico_;
  29.     majorversion = 1;
  30.     minorversion = 2;
  31.     filestem = wpicon;
  32.     metaclass = M_WPIcon;
  33.     callstyle = oidl;
  34.     dllname = "pmwp.dll";               
  35.  
  36.  
  37.     wpQueryIcon: override;
  38.     wpSetupOnce: override;
  39.     somDefaultInit: override;          
  40.     somDestruct: override;             
  41.  
  42.   };
  43. #endif /* __SOMIDL__ */
  44. };
  45.  
  46. interface M_WPIcon : M_WPDataFile
  47. {
  48.  
  49. #ifdef __SOMIDL__
  50.   implementation {
  51.  
  52.     externalstem = wpico;
  53.     local;
  54.     externalprefix = icoM_;
  55.     majorversion = 1;
  56.     minorversion = 2;
  57.     filestem = wpicon;
  58.     callstyle = oidl;
  59.     dllname = "pmwp.dll";               
  60.  
  61.  
  62.     wpclsQueryInstanceFilter: override;
  63.     wpclsQueryInstanceType: override;
  64.     wpclsInitData: override;
  65.     wpclsQueryTitle: override;
  66.     wpclsQueryDefaultHelp: override;
  67.  
  68.   };
  69. #endif /* __SOMIDL__ */
  70. };
  71.  
  72. #endif  /* wpicon_idl */
  73.