CeLogExportTable (Windows Embedded CE 6.0)

1/5/2010

This structure contains function pointers to the functions required by the event–tracking engine.

Syntax

typedef struct _CeLogExportTable {
  DWORD dwVersion;
  PFNVOID pfnCeLogData;
  PFNVOID pfnCeLogInterrupt;
  PFNVOID pfnCeLogSetZones;
  FARPROC pfnCeLogQueryZones;
  DWORD dwCeLogTimerFrequency;
} CeLogExportTable;

Members

  • dwVersion
    Version of this structure.

    Must be set to 2.

  • pfnCeLogData
    Pointer to the DLL's version of CeLogData.
  • pfnCeLogSetZones
    Pointer to the DLL's version of CeLogSetZones.
  • pfnCeLogQueryZones
    Pointer to the CeLogQueryZones function implemented by the DLL.
  • dwCeLogTimerFrequency
    The frequency of the performance counter used to generate the timestamps in the event tracking log.

Remarks

CeLogExportTable is used to create a replacement DLL for Celog.dll, which performs the default system event tracking functionality.

CeLogExportTable is passed to the kernel in an IOCTL call to the KernelLibIoControl function to register the service.

The timer frequency used to generate timestamps in the log is not necessarily equal to the return value from QueryPerformanceFrequency.

The dwCeLogTimerFrequency value is used by the kernel to set the dwFrequency value in the CEL_LOG_MARKER event structure.

Requirements

Header pkfuncs.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

OAL Structures

Other Resources

CeLogData
CeLogInterrupt
CEL_LOG_MARKER
CeLogSetZones
CeLogQueryZones
KernelLibIoControl
QueryPerformanceFrequency