Function : Log

LogCloseEntry - Deallocates an unwanted log entry.
----------------------------------------------------------------------------------------------------------

#include <log.h>

void LNPUBLIC LogCloseEntry(
WORD LogEntry);

Description :

Given the number associated with a new or partially completed log entry, this function discards all items associated with the entry and deallocates the log entry without writing the entry to the log file.

Use LogCompleteEntry to write a completed log entry to the log file.

Parameters :

Sample Usage :

/* Never mind this log entry, throw it away!!! */

LogCloseEntry(log_entry);


See Also :

LogCreateEntry
----------------------------------------------------------------------------------------------------------