-4
votes
is there a way to write macros with a variable argument list in visual C++?
Almost. It's uglier than that though (and you probably don't want a trailing semi-colon in the macro itself:
define DBGPRINT( DBGPRINT_ARGS ) printf DBGPRINT_ARGS
To use it:
DBGPR …
