home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap09 / idescrip / idescrip.idl < prev    next >
Encoding:
Text File  |  1996-05-21  |  548 b   |  24 lines

  1. /*
  2.  * IDESCRIP.IDL
  3.  *
  4.  * Definition of the IDescription 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.  
  13.  
  14. [uuid(00021152-0000-0000-c000-000000000046),
  15.     object,
  16.     pointer_default(unique)
  17. ]
  18. interface IDescription : IUnknown
  19.     {
  20.     import "unknwn.idl";
  21.  
  22.     HRESULT GetText([in, out, size_is(cch)] LPOLESTR pszText, [in] ULONG cch);
  23.     }
  24.