I created some documentation which generated nice output in both HTML and PDF. However, after adding the actual source to the file, some of the documentation is not complete. I'm actually documenting a PKCS#11 interface, which uses a function declaration macro.
#define CK_DECLARE_FUNCTION(returnType, name) \
returnType name
And then to declare the function, it is written as
CK_DECLARE_FUNCTION(int, sum2nums) (int num1, int num2)
{
...
}
What I have discovered is that when there is more than 1 argument to the function, all of the doxygen documentation after that declaration is not included in the output.
Anyone know of a workaround for this limitation?
Thanks,
Kenny
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I created some documentation which generated nice output in both HTML and PDF. However, after adding the actual source to the file, some of the documentation is not complete. I'm actually documenting a PKCS#11 interface, which uses a function declaration macro.
And then to declare the function, it is written as
What I have discovered is that when there is more than 1 argument to the function, all of the doxygen documentation after that declaration is not included in the output.
Anyone know of a workaround for this limitation?
Thanks,
Kenny