Renesas REJ10J1822-0101 Computer Hardware User Manual


 
Section 6 Definitions of Server Functions
Rev. 1.01 Mar. 17, 2008 Page 58 of 128
REJ10J1822-0101
6.5.2 OUT (Output)
Description:
This keyword defines a parameter as an output from the server function. The data output by the
server function to the area specified by the parameter are returned to the client. This keyword can
only be used with the data-type keywords PTR and ARY.
Example:
Specification of a server function
void func(struct ST *ptr);
The function has no input and returns a value in the ST structure indicated by *ptr.
Definition of the server function
func([OUT PTR]struct ST *ptr);