Section 6 Definitions of Server Functions
Rev. 1.01 Mar. 17, 2008 Page 62 of 128
REJ10J1822-0101
6.5.5 DESC (Specified Parameter is not Passed from the Client to the Server)
Description:
This keyword specifies that the parameter will not be passed from the client to the server. This
keyword can also be used with IN.
Example:
Specification of a server function
int func(void);
While the actual server function has no parameter, the client application calls an old API
function, func, which does have a parameter (int par).
Definition of the server function
int ret = func([IN DESC PTR]int par);