ncpcalls: rename remaining C32 transport symbols

Rename the remaining C32-prefixed transport helpers, probe helpers, types and
constants to protocol-oriented NCP names.

This removes implementation-oriented c32/C32 naming from the shared NCP API and
transport layer while keeping the current c32ncp.c/c32ncp.h file names until
the later ncpapi.c/ncpapi.h rename. The new names avoid conflicts by using
ncp_* helper names and NCP_* type/constant prefixes.

No behavior change.
This commit is contained in:
Mario Fetka
2026-05-29 11:32:09 +02:00
parent 9e89f85622
commit 40e7ebf939
11 changed files with 132 additions and 132 deletions

View File

@@ -110,7 +110,7 @@ static void rights_ncp_path(char *dst, char *src, int max)
}
static int rights_get_ncp_info(char *path, C32_NDIR_INFO *info)
static int rights_get_ncp_info(char *path, NCP_NDIR_INFO *info)
{
uint8 connid = 0;
uint8 dhandle = 0;
@@ -131,7 +131,7 @@ static int rights_get_ncp_info(char *path, C32_NDIR_INFO *info)
static int rights_path_exists(char *path, int *is_dir)
{
C32_NDIR_INFO info;
NCP_NDIR_INFO info;
if (rights_get_ncp_info(path, &info))
return(0);