home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_07 / 9n07026a < prev    next >
Text File  |  1991-05-10  |  404b  |  18 lines

  1. /* Copyright 1987 by Apple Computer, Inc. */ 
  2.  
  3. /* HyperXCmd.h */
  4.  
  5. typedef struct XCmdBlock
  6. {
  7.     short   paramCount;       /* initial call */
  8.     Handle  params[16];
  9.     Handle  returnValue;      
  10.     Boolean passFlag; 
  11.  
  12.     void    (*entryPoint)();  /* call back */
  13.     short   request;  
  14.     short   result;  
  15.     long    inArgs[8];
  16.     long    outArgs[4];
  17. } XCmdBlock, *XCmdBlockPtr;
  18.