home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / ATL_Samples / compctrl / CompCtrl.idl < prev    next >
Encoding:
Text File  |  1999-02-19  |  983 b   |  51 lines

  1. #include <olectl.h>
  2. // CompCtrl.idl : IDL source for CompCtrl.dll
  3. //
  4.  
  5. // This file will be processed by the MIDL tool to
  6. // produce the type library (CompCtrl.tlb) and marshalling code.
  7.  
  8. import "oaidl.idl";
  9. import "ocidl.idl";
  10.  
  11.  
  12.     [
  13.         object,
  14.         uuid(5E52C82F-D880-11D1-9355-00600820B4FF),
  15.         dual,
  16.         helpstring("ICComCtrl Interface"),
  17.         pointer_default(unique)
  18.     ]
  19.     interface ICComCtrl : IDispatch
  20.     {
  21.     };
  22. [
  23.     uuid(5E52C823-D880-11D1-9355-00600820B4FF),
  24.     version(1.0),
  25.     helpstring("CompCtrl 1.0 Type Library")
  26. ]
  27. library COMPCTRLLib
  28. {
  29.     importlib("stdole32.tlb");
  30.     importlib("stdole2.tlb");
  31.  
  32.     [
  33.         uuid(5E52C822-D880-11D1-9355-00600820B4FF),
  34.         helpstring("Event interface for ICComCtrl")
  35.     ]
  36.     dispinterface _CompEvents
  37.     {
  38.         properties:
  39.         methods:
  40.     };
  41.     [
  42.         uuid(5E52C830-D880-11D1-9355-00600820B4FF),
  43.         helpstring("CComCtrl Class")
  44.     ]
  45.     coclass CComCtrl
  46.     {
  47.         [default] interface ICComCtrl;
  48.         [default, source] dispinterface _CompEvents;
  49.     };
  50. };
  51.