Name
UciInit
Environment
Unix, Win32 Cobol
Synopsis
COPY "UCI.CPY".
CALL "UciInit".
Description
UciInit initializes the client-server processing and should be called before any other function of the UCI family.
Diagnostics
UciInit always returns ZERO.
See also
UciTerm
Examples
CALL "UciInit". ACCEPT UCI-SOCKET FROM COMMAND-LINE. CALL "UciOpen" USING UCI-PAR. CALL "UciRead" USING UCI-PAR UCI-MSG. ... CALL "UciClose" USING UCI-PAR. CALL "UciTerm".
Back to top