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

  1. #include <olectl.h>
  2. // SubEdit.idl : IDL source for SubEdit.dll
  3. //
  4.  
  5. // This file will be processed by the MIDL tool to
  6. // produce the type library (SubEdit.tlb) and marshalling code.
  7.  
  8.     
  9.  
  10.     [
  11.         object,
  12.         uuid(2D7E0F90-3215-11D0-BF28-0000E8D0D146),
  13.         dual,
  14.         helpstring("IAtlEdit Interface"),
  15.         pointer_default(unique)
  16.     ]
  17.     interface IAtlEdit : IDispatch
  18.     {
  19.         import "oaidl.idl";
  20.         import "ocidl.idl";
  21.  
  22.     };
  23. [
  24.     uuid(2D7E0F8D-3215-11D0-BF28-0000E8D0D146),
  25.     version(1.0),
  26.     helpstring("SubEdit 1.0 Type Library")
  27. ]
  28. library SUBEDITLib
  29. {
  30.     importlib("stdole32.tlb");
  31.  
  32.     
  33.  
  34.     [
  35.         uuid(2D7E0F8F-3215-11D0-BF28-0000E8D0D146),
  36.         helpstring("AtlEdit Class")
  37.     ]
  38.     coclass CAtlEdit
  39.     {
  40.         [default] interface IAtlEdit;
  41.     };
  42. };
  43.