C Program Language Differences [ Net IPC 3000/XL Programmer's Reference Manual ] MPE/iX 5.0 Documentation
Net IPC 3000/XL Programmer's Reference Manual
C Program Language Differences
Parameters
The data parameter is specified as (char^)data in IPCSEND and IPCRECV
in C programs to designate a long pointer.
Example. For example, in a Pascal program, the IPCSEND intrinsic can be
written as:
ipcsend(vcdesc, data, 1, , , result)
In a C program the same intrinsic call would be written as:
ipcsend(vcdesc, (char^)data, 1, , , result)
MPE/iX 5.0 Documentation