ncpcalls: rename probe helpers as requester calls

Rename the remaining Client32 transport helper symbols from Probe-style names
to request-style names.

These helpers are no longer only diagnostic probes; they are the low-level
requester paths used by the NCP API wrappers. Rename the raw5 helper to the
more general ncp_raw_request() name and update the MapVar/OpenRef helpers to
ncp_mapvar_request() and ncp_openref_request().

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

View File

@@ -125,13 +125,13 @@ The modern Client32 path is implemented through a small reusable helper layer:
The working sequence is:
```text
NCP_MapVar_Probe(4,0)
ncp_mapvar_request(4,0)
-> obtains the active connection reference
NCP_OpenRef_Probe()
ncp_openref_request()
-> opens that reference and returns a Client32 handle
NCP_Raw5_Probe()
ncp_raw_request()
-> sends NCP 87 requests through COMPATNcpRequestReply
```