home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / recent / recent.exe / Recent.idl < prev    next >
Text File  |  1998-04-13  |  714b  |  40 lines

  1. import "oaidl.idl";
  2. import "ocidl.idl";
  3.  
  4.     [
  5.         object,
  6.         uuid(89D32CC7-93FA-11D1-9EBC-00C0DF4A4FA9),
  7.         dual,
  8.         helpstring("IChooser Interface"),
  9.         pointer_default(unique)
  10.     ]
  11.     interface IChooser : IDispatch
  12.     {
  13.         [id(1)] HRESULT ChooseRecentFile();
  14.         [id(2)] HRESULT ChooseRecentWorkspace();
  15.     };
  16.  
  17.  
  18. [
  19.     uuid(89D32CB9-93FA-11D1-9EBC-00C0DF4A4FA9),
  20.     version(1.0),
  21.     helpstring("Recent Developer Studio Add-in 1.0")
  22. ]
  23. library Recent
  24. {
  25.     importlib("stdole32.tlb");
  26.     importlib("stdole2.tlb");
  27.     importlib("devshl.dll");
  28.     importlib("ide\devdbg.pkg");
  29.     
  30.  
  31.     [
  32.         uuid(89D32CC8-93FA-11D1-9EBC-00C0DF4A4FA9),
  33.         helpstring("Chooser")
  34.     ]
  35.     coclass Chooser
  36.     {
  37.         [default] interface IChooser;
  38.     };
  39. };
  40.