IANIMAL.IDL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IANIMAL.IDL
  3.  *
  4.  * Definition of the IAnimal interface for the MIDL compiler.
  5.  *
  6.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  7.  *
  8.  * Kraig Brockschmidt, Microsoft
  9.  * Internet  :  kraigb@microsoft.com
  10.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  11.  */
  12. [uuid(0002114a-0000-0000-c000-000000000046),
  13.     object
  14. ]
  15. interface IAnimal : IUnknown
  16.     {
  17.     import "unknwn.idl";
  18.     HRESULT Eat([in] LPTSTR pszFoodRecommended
  19.         , [in, out] LPTSTR pszFoodEaten, [in] short cchEaten);
  20.     HRESULT Sleep([in, out] short *pcMinutes);
  21.     HRESULT Procreate([out] short *pcOffspring);
  22.     HRESULT WhatKindOfAnimal([out] IID *pIID);
  23.     }