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
23 lines
454 B
/* zext.h - Z extension structures
|
|
*
|
|
* Z extension files are identified as follows:
|
|
*
|
|
* o Valid EXE-format files
|
|
*
|
|
* Modifications
|
|
*
|
|
* 26-Nov-1991 mz Strip off near/far
|
|
*
|
|
*/
|
|
|
|
/* The beginning of the user's DS is laid out as follows:
|
|
*/
|
|
|
|
struct ExtDS {
|
|
int version;
|
|
struct cmdDesc *cmdTable;
|
|
struct swiDesc *swiTable;
|
|
unsigned dgroup;
|
|
unsigned cCalls;
|
|
unsigned (*callout[1])();
|
|
};
|