docs

Home All functions Legacy functions Categories

vuDiagnosticsGetFile()

Purpose

Gets the currently configured diagnostics log file path.

Export name

Clarion prototype

Prototype: vuDiagnosticsGetFile(*CSTRING xFileName), SIGNED, PROC, PASCAL, RAW, NAME(‘vuDiagnosticsGetFile’)

Return value

Example (Clarion)

rc      LONG
diagLog CSTRING(260)

diagLog = ''
rc = vuDiagnosticsGetFile(diagLog)

IF rc = 1
  MESSAGE('Diagnostics log: ' & CLIP(diagLog))
END

Notes

Home All functions Legacy functions Categories