CEL_LOG_MARKER (Windows Embedded CE 6.0)

1/6/2010

This structure indicates the frequency of the clock used on the device.

Syntax

typedef struct __CEL_LOG_MARKER {
  DWORD dwFrequency;
  DWORD dwDefaultQuantum;
  DWORD dwVersion;
} CEL_LOG_MARKER, *PCEL_LOG_MARKER; 

Members

  • dwFrequency
    Clock frequency, in tick counts per second, used to create time stamps.
  • dwDefaultQuantum
    Quantum that will be used for each new thread that is created. The quantum can be changed at any time after the thread is created.
  • dwVersion
    Version number associated with the logging subsystem. This is should always be set to 1 for Windows CE 3.0, and to 2 for and later.

Remarks

The marker should be the first item logged at the beginning of each new logging session. It provides the receiver with data used to interpret the log.

The clock frequency, dwFrequency, can be used to determine the number of seconds between events. Because all time stamps are logged in tick counts, the clock frequency can be used to convert those time stamps into seconds.

Requirements

Header celog.h
Windows Embedded CE Windows CE 3.0 and later

See Also

Reference

CeLog Event Tracking Structures

Other Resources

CeLogExportTable