home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / atlduck / iduckint.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  992b  |  36 lines

  1. // iduckint.h: Declaration of IDuckInt
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12.  
  13. #ifndef INC_IDUCKINT_H
  14. #define INC_IDUCKINT_H
  15.  
  16.     interface DECLSPEC_UUID("120B72AE-65BF-11D0-9DDC-00A0C9034892")
  17.  
  18.     IDuckInt : public IUnknown
  19.     {
  20.     public:
  21.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Quack(
  22.             BSTR szWhosCalling) = 0;
  23.  
  24.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Flap(
  25.             BSTR szWhosCalling) = 0;
  26.  
  27.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Paddle(
  28.             BSTR szWhosCalling) = 0;
  29.  
  30.         virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Walk(
  31.             BSTR szWhosCalling) = 0;
  32.  
  33.     };
  34.  
  35. #endif
  36.