HPlogo   NetIPC 3000/XL Programmer's Reference Manual:
HP 3000 MPE/iX Computer Systems
> Appendix E C Program Language Considerations

C Program Language Differences

MPE documents

Complete PDF

 

Table of Contents

Glossary

Index

 

⇓ Page Bottom

⇑ Page Top

 

Appendix E C Program Language Considerations

Glossary

Parameters

The data (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 )
  



Appendix E C Program Language Considerations

Glossary