LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Ellipsis in HIPAR documentation

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.

0 Kudos
Message 1 of 3
(2,912 Views)

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

______________
Florian Abry
Inside Sales Engineer, NI Germany
0 Kudos
Message 2 of 3
(2,873 Views)

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?

 

 

0 Kudos
Message 3 of 3
(2,865 Views)