cfunc.print_on
Pick/BASIC 'print on' functionality from C.
Syntax
int _CP_print_on(int expression)
Description
equivalent to the following Pick/BASIC statement: print on expression
This function returns -1 if an error occurs. The error code is contained in _CP_errno.
Example
The following example prints 'hi' to print job 1.
CPSTR * s = _CP_mkstr('hi');
_CP_print_on(1);
_CP_print(s);
See Also
User Comments
What do you think?
Share your experience or ask a question by using the form below.
Login to leave your comments.
