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 >
Wrap
C/C++ Source or Header
|
1998-03-26
|
992b
|
36 lines
// iduckint.h: Declaration of IDuckInt
//
// This is a part of the Active Template Library.
// Copyright (C) 1996-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Active Template Library Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Active Template Library product.
#ifndef INC_IDUCKINT_H
#define INC_IDUCKINT_H
interface DECLSPEC_UUID("120B72AE-65BF-11D0-9DDC-00A0C9034892")
IDuckInt : public IUnknown
{
public:
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Quack(
BSTR szWhosCalling) = 0;
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Flap(
BSTR szWhosCalling) = 0;
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Paddle(
BSTR szWhosCalling) = 0;
virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Walk(
BSTR szWhosCalling) = 0;
};
#endif