Hi,
I am trying to find a solution to converting this macro:
#define msg(flags, ...) do { if (MSG_TEST(flags)) x_msg((flags), __VA_ARGS__); } while
(false)
Or this one:
#define msg(flags, args...) do { if (MSG_TEST(flags)) x_msg((flags), args); } while
(false)
To something that MSVC++ will allow to compile, currently it appears that cannot. I
will be happy to see someone with a solution to this...
(BTW, this code is taken from the OpenVPN project, which I am trying to build a MFC
based GUI for, open sourced of course)
Thanks
Noam Rathaus
CTO
Beyond Security Ltd.
http://www.securiteam.com
================================================================To unsubscribe, send
mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]