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

@@ -45,9 +45,9 @@ public _IPXclose_socket
public _IPXlisten
public _xmemmove
public _Net_Call
public _C32_NCP87_Raw5_Probe
public _C32_OpenRef_Probe
public _C32_MapVar_Probe
public _NCP_Raw5_Probe
public _NCP_OpenRef_Probe
public _NCP_MapVar_Probe
_IPXinit proc far
push bp
mov bp, sp
@@ -242,7 +242,7 @@ _Net_Call endp
; int C32_OpenRef_Probe(UI refLo, UI refHi, void *outbuf)
; int NCP_OpenRef_Probe(UI refLo, UI refHi, void *outbuf)
;
; Opens a Client32 connection by connection reference using the same d32wrap
; convention as _CONNOpenByReference / w95ocref.o.
@@ -262,7 +262,7 @@ _Net_Call endp
; +10 return DX
; +12 handle low
; +14 handle high
_C32_OpenRef_Probe proc far
_NCP_OpenRef_Probe proc far
push bp
mov bp, sp
sub sp, 80
@@ -404,11 +404,11 @@ c32openref_store:
c32openref_name db 'CONNOpenByReference',0
_C32_OpenRef_Probe endp
_NCP_OpenRef_Probe endp
; int C32_MapVar_Probe(UI specLen, UI flag, void *outbuf)
; int NCP_MapVar_Probe(UI specLen, UI flag, void *outbuf)
;
; Exact-ish raw version of w95mconn.o::__C32MapConn16To32 second step.
;
@@ -436,7 +436,7 @@ _C32_OpenRef_Probe endp
; +14 resultRef high
; +16 connRefLocal low ; corresponds to d32conni local -1c
; +18 connRefLocal high
_C32_MapVar_Probe proc far
_NCP_MapVar_Probe proc far
push bp
mov bp, sp
sub sp, 140
@@ -691,21 +691,21 @@ c32mapvar_store:
c32mapvar_name db 'CONNScanInfo',0
_C32_MapVar_Probe endp
_NCP_MapVar_Probe endp
; int C32_NCP87_Raw5_Probe(UI connLo, UI connHi,
; int NCP_Raw5_Probe(UI connLo, UI connHi,
; void *hdr, UI hdrLen,
; void *path, UI pathLen,
; void *rep0, UI rep0Len,
; void *rep1, UI rep1Len,
; void *outbuf)
;
; Same as C32_NCP87_Raw_Probe but uses d32wrap-compatible 5-slot
; Same as NCP_Raw_Probe but uses d32wrap-compatible 5-slot
; fragment tables: 5 * 8 = 0x28 bytes for request and reply.
_C32_NCP87_Raw5_Probe proc far
_NCP_Raw5_Probe proc far
push bp
mov bp, sp
sub sp, 180
@@ -983,7 +983,7 @@ raw5_store:
raw5_name db 'COMPATNcpRequestReply',0
_C32_NCP87_Raw5_Probe endp
_NCP_Raw5_Probe endp
end