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 / rpcssm / rpcssm.idl < prev    next >
Encoding:
Text File  |  1995-11-14  |  711 b   |  29 lines

  1. [ uuid (A4F1DB00-CA47-1067-B31F-00DD010662DA),
  2.   version(1.0),
  3.   pointer_default(unique)
  4. ]
  5. interface rpcssm
  6. {
  7.  
  8. /* =======================================================================
  9.                        data types
  10. ======================================================================= */
  11.  
  12. const short LIST_SIZE = 4;
  13.  
  14. typedef struct _lbox {
  15.     long               data;
  16.     struct _lbox *     next;
  17. } LBOX, * PBOX;
  18.  
  19. /* =======================================================================
  20.                       remote procedures
  21. ======================================================================= */
  22.  
  23. void 
  24. InOutList( [in,out] PBOX  *  ppBox );
  25.  
  26. void Shutdown(void);
  27.  
  28. }
  29.