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

  1.  
  2. //  Module Header
  3. //
  4. //  Module Name: WPSOUND
  5. //
  6. //  OS/2 Presentation Manager Workplace class definitions
  7. //
  8. //  Copyright (c) International Business Machines Corporation 1991, 1992
  9. //
  10.  
  11. #ifndef wpsound_idl
  12. #define wpsound_idl
  13.  
  14. #include "wpabs.idl"
  15. #include <somcls.idl>
  16.  
  17. interface M_WPSound;
  18.  
  19. interface WPSound : WPAbstract
  20.  
  21. {
  22.   ULONG wpAddSoundWarningBeepPage(in HWND hwndNotebook);
  23.  
  24.   ULONG wpAddSoundSchemePage(in HWND hwndNotebook);
  25.  
  26. #ifdef __SOMIDL__
  27.   implementation {
  28.  
  29.     releaseorder: wpAddSoundWarningBeepPage,wpAddSoundSchemePage;
  30.  
  31.     externalstem = WPsou;
  32.     local;
  33.     externalprefix = sou_;
  34.     majorversion = 1;
  35.     minorversion = 2;
  36.     filestem = wpsound;
  37.     metaclass = M_WPSound;
  38.     callstyle = oidl;
  39.     dllname = "wpconfig.dll";
  40.  
  41.  
  42.     wpAddSettingsPages: override;
  43.     wpAddObjectWindowPage: override;
  44.     wpFilterMenu: override;                                                     
  45.     somDefaultInit: override;             
  46.     somDestruct:    override;             
  47.  
  48.   };
  49. #endif /* __SOMIDL__ */
  50. };
  51.  
  52. interface M_WPSound : M_WPAbstract
  53. {
  54.  
  55. #ifdef __SOMIDL__
  56.   implementation {
  57.  
  58.     externalstem = WPsou;
  59.     local;
  60.     externalprefix = souM_;
  61.     majorversion = 1;
  62.     minorversion = 2;
  63.     filestem = wpsound;
  64.     callstyle = oidl;
  65.     dllname = "wpconfig.dll";
  66.  
  67.     wpclsQueryTitle: override;
  68.     wpclsQueryDefaultHelp: override;
  69.     wpclsQueryDefaultView: override;
  70.     wpclsQueryStyle: override;
  71.     wpclsQueryIconData: override;
  72.  
  73.   };
  74. #endif /* __SOMIDL__ */
  75. };
  76.  
  77. #endif  /* wpsound_idl */
  78.