home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / atlduck / atlduck.idl < prev    next >
Text File  |  1998-03-26  |  683b  |  36 lines

  1. import  "oaidl.idl";
  2. // atlduck.idl : IDL source for atlduck.dll
  3. //
  4.  
  5. // This file will be processed by the MIDL tool to
  6. // produce the type library (atlduck.tlb) and marshalling code.
  7.  
  8.     [
  9.     
  10.         uuid(120B729F-65BF-11D0-9DDC-00A0C9034892),
  11.     
  12.         helpstring("IDuckDoer Interface"),
  13.         pointer_default(unique)
  14.     ]
  15.     interface IDuckDoer : IUnknown
  16.     {
  17.     };
  18. [
  19.     uuid(120B7293-65BF-11D0-9DDC-00A0C9034892),
  20.     version(1.0),
  21.     helpstring("atlduck 1.0 Type Library")
  22. ]
  23. library ATLDUCKLib
  24. {
  25.     importlib("stdole32.tlb");
  26.  
  27.     [
  28.         uuid(120B72A0-65BF-11D0-9DDC-00A0C9034892),
  29.         helpstring("DuckDoer Class")
  30.     ]
  31.     coclass DuckDoer
  32.     {
  33.         [default,source] interface IDuckDoer;
  34.     };
  35. };
  36.