DEBUGZONE (Windows CE 5.0)

Send Feedback

This macro associates a mask bit with a zone.

DEBUGZONE (ulZoneMask) 

Parameters

  • ulZoneMask
    The mask bit to be associated with a zone.

Return Values

A Boolean value that may be used to control the output of debug messages for a particular debug zone.

Remarks

This macro may be used to control the output of debugging messages by zone. Debugging zones may be set through the registry on the development workstation.

The following example shows how to associate bit 0 of a mask bit with an INFO zone.

#define ZONE_INFO   DEBUGZONE(0)

In this example, ZONE_INFO could be used to as an argument to DEBUGMSG to provide a conditional debugging message.

Requirements

OS Versions: Windows CE OS 2.10 and later
Header: Dbgapi.h
Link Library: none

See Also

DEBUGMSG

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.