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

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