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 / pickle / picklt / picklt.idl < prev    next >
Encoding:
Text File  |  1995-11-14  |  473 b   |  24 lines

  1. [ uuid (B75AF600-9CF4-11CD-A076-08002B2BD711),
  2.   version(1.0),
  3.   pointer_default(unique)
  4. ]
  5. interface type_pickle
  6. {
  7.  
  8. const short ARR_SIZE =  4;
  9. const short BUFSIZE = 1024;
  10.  
  11. typedef struct _OBJECT1 {
  12.     long            al[ARR_SIZE];
  13.     unsigned short  s;
  14.     } OBJECT1;
  15.  
  16. /* This is the top level type to be serialized. See the ACF file */
  17.  
  18. typedef struct _OBJECT2 {
  19.     unsigned short      sData;
  20.     OBJECT1 *           pObject1;
  21.     } OBJECT2;
  22.  
  23. }
  24.