Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
454 B

  1. /* zext.h - Z extension structures
  2. *
  3. * Z extension files are identified as follows:
  4. *
  5. * o Valid EXE-format files
  6. *
  7. * Modifications
  8. *
  9. * 26-Nov-1991 mz Strip off near/far
  10. *
  11. */
  12. /* The beginning of the user's DS is laid out as follows:
  13. */
  14. struct ExtDS {
  15. int version;
  16. struct cmdDesc *cmdTable;
  17. struct swiDesc *swiTable;
  18. unsigned dgroup;
  19. unsigned cCalls;
  20. unsigned (*callout[1])();
  21. };