Split the Open Watcom assembly glue into separate IPX and NCP requester modules. Keep the IPX socket and far-memory helper entry points in ipx.asm and move the INT 21h Net_Call plus Client32 requester entry points into ncpcall.asm. Split the former kern.h declarations accordingly into ipx.h and ncpcall.h, and update net.h and the Open Watcom build to use the new headers and object files. This matches the current source layout where ncpcall.c owns the low-level NCP transport helpers and ncpapi.c owns the ncpXX_YY_* protocol API wrappers. No behavior change.
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
/*
|
|
* mars-nwe-dosutils - NetWare/DOS utility tools.
|
|
*
|
|
* Copyright (C) 2026 Mario Fetka
|
|
* Copyright (C) 1993,1996 Martin Stover, Marburg, Germany
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Purpose: C declarations for low-level NetWare requester and Client32 transport assembly glue.
|
|
* Depends on: ncpcall.asm for Open Watcom builds, ncpcall.c transport helpers, and net.h for shared types.
|
|
*/
|
|
|
|
#ifndef NCPCALL_H
|
|
#define NCPCALL_H
|
|
|
|
#if defined(__WATCOMC__)
|
|
#define NCP_CALL _Cdecl
|
|
#else
|
|
#define NCP_CALL
|
|
#endif
|
|
|
|
extern int NCP_CALL Net_Call(UI func, void *req, void *repl);
|
|
extern int NCP_CALL ncp_mapvar_request(UI specLen, UI flag, void *outbuf);
|
|
extern int NCP_CALL ncp_openref_request(UI refLo, UI refHi, void *outbuf);
|
|
extern int NCP_CALL ncp_raw_request(UI connLo, UI connHi,
|
|
void *hdr, UI hdrLen,
|
|
void *path, UI pathLen,
|
|
void *rep0, UI rep0Len,
|
|
void *rep1, UI rep1Len,
|
|
void *outbuf);
|
|
|
|
#undef NCP_CALL
|
|
|
|
#endif /* NCPCALL_H */
|