I have a variable argument function:
int SetAttribute(object obj, int attrib, ...);
I want to check the type a user puts to the variable list at runtime. CVI itself can check the type put into SetCtrlAttribute(int panel, int ctrl, ..). Is it possible to check the type within a va_list at runtime?
Thanks in advance.