in iOSapi.Foundation.pas we have this row :
//procedure NSLogv(format: PNSString; args: va_list); cdecl; external libFoundation name _PU + 'NSLogv';
Why it is commented / deactivated ? This procedure is defined like this in the header :
FOUNDATION_EXPORT void NSLogv(NSString *format, va_list args) NS_FORMAT_FUNCTION(1,0) NS_NO_TAIL_CALL;
When i try to uncomment it, i have an error: va_list not defined. If i not make any mistake, va_list is just a pointer ?
After how to call this function ? NB: i need to call this exact function, not any other log function ....