home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / com / dcom / atlcont / atlcont.idl < prev    next >
Text File  |  1998-04-02  |  810b  |  35 lines

  1. // AtlCon.idl : IDL source for AtlCon.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (AtlCon.tlb) and marshalling code.
  5.  
  6.     [
  7.         object,
  8.         uuid(BFD466C3-376C-11D0-96B5-00A0C90DC94B),
  9.         helpstring("IAtlCont Interface"),
  10.         pointer_default(unique)
  11.     ]
  12.     interface IAtlCont : IUnknown
  13.     {
  14.         import "oaidl.idl";
  15.         HRESULT Run();
  16.         HRESULT Stop();
  17.     };
  18. [
  19.     uuid(8F3C5551-376C-11D0-96B5-00A0C90DC94B),
  20.     version(1.0),
  21.     helpstring("AtlCont 1.0 Type Library")
  22. ]
  23. library ATLCONTLib
  24. {
  25.     importlib("stdole32.tlb");
  26.     [
  27.         uuid(BFD466C2-376C-11D0-96B5-00A0C90DC94B),
  28.         helpstring("AtlCont Class")
  29.     ]
  30.     coclass CAtlCont
  31.     {
  32.         [default] interface IAtlCont;
  33.     };
  34. };
  35.