Move the existing ncpXX_YY_* protocol wrapper implementations from ncpcall.c into c32ncp.c. This makes c32ncp.c the staging file for the future ncpapi.c rename, while ncpcall.c is kept for lower-level requester/transport helpers. No function names or packet logic are changed. No behavior change.
33 lines
1.2 KiB
C
33 lines
1.2 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: Low-level NCP requester call helper placeholder for the NetWare DOS tools.
|
|
* Depends on: net.h, netcall.c requester glue, kern_wasm.asm/kern.asm Net_Call entry point.
|
|
*
|
|
* The public ncpXX_YY_* protocol wrappers have been moved to c32ncp.c,
|
|
* which is planned to become ncpapi.c. This file is kept for future raw
|
|
* requester/transport helpers.
|
|
*/
|
|
|
|
#include "net.h"
|
|
|
|
/* No exported wrappers live here at the moment. */
|