Tag Archives: CTEXIT()
CTInit()
CTInit()
Initializes the CT3 library
Syntax
CTINIT() -> <lInitialized>
Arguments
None
Returns
<lInitialized> .T. if the function has been correctly initialized
Description
The CTINIT() function initializes the CT3 library. Identical code is declared as INIT FUNCTION, thus should be executed automatically at the beginning of the application, but it is a good idea to call it once again explicitly somewhere at the beginning of your program to check the initialization.
Compliance
CTINIT() is a new function in Harbour’s CT3 library.
Platforms
All
Files
Source is ct.prg, library is libct.
Seealso
CTCINIT(), CTCEXIT(), CTEXIT()
CTCInit()
CTCInit()
Initializes the CT3 library, C part
Syntax
CTCInit() -> <lInitialized>
Arguments
None
Returns
<lInitialized> .T. if the function has been correctly initialized
Description
The CTCInit() function initializes the C source part of the CT3 library. Do not call this function directly.
Compliance
CTCInit() is a new function in Harbour’s CT3 library.
Platforms
All
Files
Source is ctc.c, library is libct.
Seealso
CTINIT(), CTEXIT()
CTCExit()
CTCExit()
Uninitializes the CT3 library, C part
Syntax
CTCExit() -> NIL
Arguments
none
Returns
nil
Description
The CTCExit() function uninitializes the C part of the CT3 library. Do not call this function directly.
Compliance
CTCExit() is a new function in Harbour’s CT3 library.
Platforms
All
Files
Source is ctc.c, library is libct.
Seealso
CTINIT(), CTEXIT()