inline
void
QuicTraceEventStubVarArgs(
_In_ const void* Fmt,
...
)
{
UNREFERENCED_PARAMETER(Fmt);
}
#define QuicTraceEvent(Name, ...) QuicTraceEventStubVarArgs("", __VA_ARGS__)
In msquic, we use the following trick to make sure the compiler sees all logs as referenced, rather then just defining away the macro.