Click to Rate and Give Feedback
MSDN
MSDN Library
Core OS Services
Core OS Reference
Debugging Reference
Debugging Macros
 RETAILMSG

  Switch on low bandwidth view
RETAILMSG
Windows Mobile SupportedWindows Embedded CE Supported
8/28/2008

This macro conditionally outputs a printf-style formatted message.


RETAILMSG (
    Expression,
    Message
) 
Expression

Boolean expression used to determine if the message would be output.

Message

Expression to be printed using printf format style.

None.

The printf-style message parameter is output if the Boolean input expression evaluates to TRUE. Note that the parameter Message must be enclosed by parentheses to prevent syntax errors being generated by the preprocessor. This macro should be used sparingly, as it increases the size of retail builds.

 RETAILMSG(TRUE, (TEXT("Testing item count against maximum %u\r\n"),
         dwMaxNumberOfItems));
 RETAILMSG(dwCurrentNumberOfItems >= dwMaxNumberOfItems,
          (TEXT("Invalid item count! Found %u, expected less than %u\r\n"),
           dwCurrentNumberOfItems, dwMaxNumberOfItems));

Output:

 Testing item count against maximum 68
 Invalid item count! Found 343, expected less than 68
Headerdbgapi.h
Windows Embedded CEWindows CE 2.10 and later
Windows MobileWindows Mobile Version 5.0 and later

Reference

DEBUGMSG
ERRORMSG

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker