Start_Logging

Activates LVM Engine logging. Once activated, the logging function will log all LVM Engine activity to the specified log file.


#include <lvm_intr.h>

void _System Start_Logging(

    char *       Filename,    /* (I) Log file name */
    CARDINAL32 * Error_Code   /* (O) Address where the error code will be stored */

);

Parameters

Filename
The filename of the log file to be generated.
Error_Code
The address of a CARDINAL32 in which to store an error code should an error occur.

Returns

N/A.

Errors

If the log file could not be created, the value pointed to by Error_Code will be greater than 0.

Side Effects

A file may be created/opened for the logging of LVM Engine actions.

Notes

None.

16-Bit Equivalent:

void _Far16 _Pascal _loadds START_LOGGING16(
        char *       _Seg16 Filename,
        CARDINAL32 * _Seg16 Error_Code
);