docs

Home All functions Legacy functions Categories

vuLogGetFile()

Description

Gets the mail log file path. (legacy name: vuGetMailLog()).

Previously exported as (legacy name, still supported):

Parameters

Returns

A LONG value indicating the result.

Notes

This returns the log file path from the current session.

Example (Clarion)

ROUTINE:Test_vuLogGetFile   ROUTINE
  DATA
cLog   CSTRING(520)
RC     LONG

  CODE
  cLog = ''
  RC = vuLogGetFile(cLog)
  STOP('RC=' & RC & '  MailLog=' & cLog)
Home All functions Legacy functions Categories