Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
__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