Location:
e32def.h
VA_START (ap, pn) ((ap)[0]=(TInt8 *)&pn+((sizeof(pn)+sizeof(TInt)-1)&~(sizeof(TInt)-1)),(void)0)
A macro used by Symbian OS code for handling a variable argument list in a function call.
Sets a pointer to point to the first of the variable arguments.
Typical usage:
Foo(CAbcdef aAbcdef,...)
{
VA_LIST list;
VA_START(list, aAbcdef);
// other code
}
|