DiNatale - 2012-09-04

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:

        /// <summary>
        /// do something...
        /// </summary>
        /// <param name="myParam">an output param - will be true if more frames are available, false otherwise</param>
        /// <returns>0 (Success), an error code otherwise</returns>
        [DllImport(My_DLL_NAME)]
        public static extern uint doSomething([param: MarshalAs(UnmanagedType.U1)] out bool myParam);

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