03-14-2011 05:35 AM
Hi,
I have got a function which has an ellipsis ("...") parameter.
When I try to write a documentation for this parameter
/// HIPAR .../Helptext
I get the Warning: Missing or invalid argument for documentation tag.
It must work some way because printf etc. show popup help for the ellipsis parameter.
Thanks in advance for your help.
03-17-2011 03:53 AM - edited 03-17-2011 03:55 AM
Hello
I am sorry, but I don't really understand what you are trying to do and what you exactly are looking for. Could you develop your problem a little more?
Thanks
Regards
03-17-2011 06:05 AM
This is an example code:
7382 /// HIFN Function to demonstrate popup help in CVI
7383 /// HIPAR ParA/This is the first parameter
7384 /// HIPAR ParB/This is the second parameter
7385 /// HIPAR ParC/This is the third parameter
7386 /// HIPAR .../This should be the description for the ellipsis parameter ("...")
7386 /// HIRET This function returns allways 0
7387 int FuncX(int ParA, double ParB, char * ParC, ...)
7388 {
7389
7390 return 0;
7391 }
When I compile my project include this code I get the following warning:
7386, 11 Warning: Missing or invalid argument for documentation tag.
This means the compiler does not accept "..." as parameter name.
Question: What do I have to write instead of
/// HIPAR .../Parameter description
that the compiler knows which parameter is mentioned in this documentation line?