home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / doctor / doctor.idl < prev    next >
Encoding:
Text File  |  1995-11-14  |  254 b   |  15 lines

  1. [ uuid (C2557720-CA46-1067-B31C-00DD010662DA),
  2.   version(1.0),
  3.   pointer_default(unique)
  4. ]
  5. interface doctor
  6. {
  7.  
  8. const short STRSIZE = 500;
  9.  
  10. void Analyze([in, out, string, size_is(STRSIZE)] unsigned char * pszInOut);
  11.  
  12. void Shutdown(void);
  13.  
  14. }
  15.