I need to create some type of index for exported functions in the software for the latex manual. The doxygen feature of exporting to LaTeX does not allow to do it by default. The required form is following:
Index: [function name], [function description] ....... [page]
_other functions
Text:
[function name[ [function description] [additional information(function parameters, return type and so on...]
Traditional index package have no possibility to add custom description to the index however (or I have not looked thoroughly?) Or the glossaries package has the required functionality?
Here is file example:
GetOperationState %function name
function returns the actual state of measurement. %function description
%below is additional information
\begin{verbatim}
unsigned short GetOperationState(unsigned short Op)
\end{verbatim}
Parameters
\begin{description}
\item{Op} Reserved for future use.
\end{description}
Return Values
...Some Text...
Please help or give the direction of where to look.

