home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / dcom / comperf / psperf.idl < prev    next >
Text File  |  1996-07-29  |  381b  |  23 lines

  1. // FILE: psperf.idl
  2.  
  3. [
  4.     uuid(DDC68871-E08E-11cf-A535-00AA00615B03),
  5.     dual,
  6.     oleautomation
  7. ]
  8. interface ICOMPerformance : IUnknown
  9. {
  10.     import "oaidl.idl";
  11.     [id(11)]
  12.     HRESULT Test1([in] int l);
  13.     [id(12)]
  14.     HRESULT Test23([in] BSTR szDesc);
  15. }
  16.  
  17.     uuid(DDC68870-E08E-11cf-A535-00AA00615B03) 
  18. ]
  19. coclass TestCOMPerformance
  20. {
  21.    [default] interface ICOMPerformance;
  22. };