29 lines
1.0 KiB
C
29 lines
1.0 KiB
C
/* kern.h Assembler Routinen 20-Nov-93 */
|
|
#if defined(__WATCOMC__)
|
|
#define KERN_CALL _Cdecl
|
|
#else
|
|
#define KERN_CALL
|
|
|
|
|
|
#endif
|
|
|
|
extern int KERN_CALL IPXinit(void);
|
|
extern int KERN_CALL IPXopen_socket(UI sock, int live);
|
|
extern void KERN_CALL IPXclose_socket(UI sock);
|
|
extern int KERN_CALL IPXlisten(ECB *ecb);
|
|
extern void asm_esr_routine(void);
|
|
extern void esr_routine(ECB *ecb);
|
|
extern void KERN_CALL xmemmove(void *ziel, void *quelle, UI anz);
|
|
extern int KERN_CALL Net_Call(UI func, void *req, void *repl);
|
|
extern int KERN_CALL C32_MapVar_Probe(UI specLen, UI flag, void *outbuf);
|
|
extern int KERN_CALL C32_OpenRef_Probe(UI refLo, UI refHi, void *outbuf);
|
|
extern int KERN_CALL C32_NCP87_Raw5_Probe(UI connLo, UI connHi,
|
|
void *hdr, UI hdrLen,
|
|
void *path, UI pathLen,
|
|
void *rep0, UI rep0Len,
|
|
void *rep1, UI rep1Len,
|
|
void *outbuf);
|
|
#undef KERN_CALL
|
|
|
|
|