__noop (Windows CE 5.0)

Send Feedback

__noop gives you a function name to use when you want the function to be ignored and the argument list unevaluated.

__noop(funcitonname)

The following code shows how you could use __noop:

// compile with or without /DDEBUG
#include <stdio.h>

#if DEBUG
  #define PRINT  printf
#else
  #define PRINT  __noop
#endif

void main() {
PRINT("\nhello\n");
}

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Cmnintrin.h.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.