hi guys,
I am relatively new to Doxygen, and I have a project with a C#/Mono dll, that is defined by invoking a C dll.
The problem is that some of the parameters have marshalling attributes before the real param type, to avoid problems converting .NET to C++ variables.
I would like the Doxygen output to ignore these attributes and display only the "real" variable type.
For example, my code looks like this:
hi guys,
I am relatively new to Doxygen, and I have a project with a C#/Mono dll, that is defined by invoking a C dll.
The problem is that some of the parameters have marshalling attributes before the real param type, to avoid problems converting .NET to C++ variables.
I would like the Doxygen output to ignore these attributes and display only the "real" variable type.
For example, my code looks like this:
I would like the output to show only:
static uint doSomething(out bool myParam);
instead of:
static uint doSomething( out bool myParam);
thanks in advance for any ideas
Bruno