home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / idl / wphtml.idl < prev    next >
Text File  |  1999-03-15  |  1KB  |  76 lines

  1. //
  2. //   Module Name: WPHTML
  3. //
  4. //   OS/2 Work Place Shell - HTML data file object
  5. //
  6. //   Copyright (C) 1996 IBM Corporation
  7. //
  8.  
  9. #ifndef WPHtml_idl
  10. #define WPHtml_idl
  11.  
  12. #include <wpdataf.idl>
  13. #include <somcls.idl>
  14.  
  15. interface M_WPHtml;
  16.  
  17. interface WPHtml : WPDataFile
  18.  
  19. {
  20.  
  21.    implementation
  22.    {
  23.       externalstem = html_;
  24.       local;
  25.       externalprefix = html_;
  26.       majorversion = 1;
  27.       minorversion = 2;
  28.       filestem = wphtml;
  29.       metaclass = M_WPHtml;
  30.       callstyle = oidl;
  31.       dllname = "wpinet.dll";
  32.  
  33.       wpSetupOnce:          override;                                            
  34.  
  35.       wpCreateFromTemplate: override;                                          
  36.  
  37.       wpCreateAnother:      override;                                          
  38.  
  39.       somDefaultInit:       override;
  40.       somDestruct:          override;
  41.  
  42.    };
  43. };
  44.  
  45. interface M_WPHtml : M_WPDataFile
  46. {
  47.    implementation
  48.    {
  49.       externalstem = htmlM_;
  50.       local;
  51.       externalprefix = htmlM_;
  52.       majorversion = 1;
  53.       minorversion = 2;
  54.       filestem = wphtml;
  55.       callstyle = oidl;
  56.       dllname = "wpinet.dll";
  57.  
  58.  
  59.       wpclsInitData: override;
  60.  
  61.       wpclsQueryDefaultHelp: override;
  62.  
  63.       wpclsQueryTitle: override;
  64.  
  65.       wpclsQueryStyle: override;
  66.  
  67.       wpclsQueryInstanceFilter: override;
  68.  
  69.       wpclsQueryInstanceType: override;
  70.  
  71.       wpclsCreateDefaultTemplates: override;
  72.  
  73.    };
  74. };
  75. #endif
  76.