|
|
|
|
|
dbgStandardOutput (Function) In french: dbgSortieStandard Writes information into the standard output stream "stdout" (also called "console"). Remarks: - In Linux, the information written with this function is directly displayed because the created executables are "console" executables.
- In Windows, the executables are not "console" executables: the information written with this function is not directly displayed. However, if the standard output is redirected into a file (via "> FileOutput.txt" for example), the written information is available.
dbgStandardOutput("Operation successful")
Syntax
<Result> = dbgStandardOutput(<Information>)
<Result>: Integer Size of information written. Remark: dbgStandardOutput automatically adds a CR character (Carriage Return) at the end of the string. Therefore, the final size is greater than the size of the information (by 1 or 2 characters). <Information>: Character string Information that will be written into the standard output stream.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|