home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / WPSOUND.IDL < prev    next >
Text File  |  1995-11-07  |  1KB  |  76 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. #ifdef __SOMIDL__
  25.   implementation {
  26.  
  27.     releaseorder: wpAddSoundWarningBeepPage;
  28.  
  29.     externalstem = WPsou;
  30.     local;
  31.     externalprefix = sou_;
  32.     majorversion = 1;
  33.     minorversion = 2;
  34.     filestem = wpsound;
  35.     metaclass = M_WPSound;
  36.     callstyle = oidl;
  37.     dllname = "wpconfig.dll";
  38.  
  39.  
  40.     wpAddSettingsPages: override;
  41.     wpAddObjectWindowPage: override;
  42.     wpFilterPopupMenu: override;
  43.     somDefaultInit: override;             
  44.     somDestruct:    override;             
  45.  
  46.   };
  47. #endif /* __SOMIDL__ */
  48. };
  49.  
  50. interface M_WPSound : M_WPAbstract
  51. {
  52.  
  53. #ifdef __SOMIDL__
  54.   implementation {
  55.  
  56.     externalstem = WPsou;
  57.     local;
  58.     externalprefix = souM_;
  59.     majorversion = 1;
  60.     minorversion = 2;
  61.     filestem = wpsound;
  62.     callstyle = oidl;
  63.     dllname = "wpconfig.dll";
  64.  
  65.     wpclsQueryTitle: override;
  66.     wpclsQueryDefaultHelp: override;
  67.     wpclsQueryDefaultView: override;
  68.     wpclsQueryStyle: override;
  69.     wpclsQueryIconData: override;
  70.  
  71.   };
  72. #endif /* __SOMIDL__ */
  73. };
  74.  
  75. #endif  /* wpsound_idl */
  76.