Tagged Questions
8
votes
4answers
4k views
Populating a va_list
Is there a way to create a va_list from scratch? I'm trying to call a function that takes a va_list as a parameter:
func(void **entry, int num_args, va_list args, char *key);
...from a function ...
2
votes
4answers
85 views
Standard C cast of va_arg return value warning
I am developing a C program and have been stumped by this warning. I want to retrieve arguments from the list using va_arg.
args[i] = (int) va_arg(argptr, int);
or
args[i] = (char) va_arg(argptr, ...
0
votes
2answers
27 views
How do you properly create a va_list dynamically at runtime for Cocos2D CCMenu menuWithItems?
I'm having a hell of a time with the CCMenu class. To create a menu with this class it forces you to call a method called initWithItems, which takes a va_list. I need to generate this list at runtime, ...
0
votes
1answer
164 views
int32 len = va_args(va, int32) gives very large value on x86_64 GNU/Linux
void AppBuf(message_id_type msgID, int32 numPairs, va_list va)
{
int32 len = va_args(va, int32);
....
}
The above piece of code runs perfectly fine on windows (32 and 64 bit) and also on linux 32 ...