E
Egbert Nierop \(MVP for IIS\)
Hi,
I have a function that has a variable no of arguments
(note! function shortened)
myfunction(int someID, ...)
{
va_list args;
va_start args, someID;
FormatMessage(......, &args);
va_end(args);
}
PROBLEM: formatMessage wants a pointer thus, 'va_list *Arguments'.
How can I correctly pass this all since the code above does not work.
I have a function that has a variable no of arguments
(note! function shortened)
myfunction(int someID, ...)
{
va_list args;
va_start args, someID;
FormatMessage(......, &args);
va_end(args);
}
PROBLEM: formatMessage wants a pointer thus, 'va_list *Arguments'.
How can I correctly pass this all since the code above does not work.