Share via


CEL_LOG_MARKER

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

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 Windows CE .NET 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

OS Versions: Windows CE 3.0 and later.
Header: Celog.h.

See Also

CeLogExportTable

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.