home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / WPCTRY.IDL < prev    next >
Text File  |  1995-11-07  |  2KB  |  86 lines

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