Hello,
I have the following snippet in my document:
<funcsynopsis>
<funcsynopsisinfo>#include "softech.h"</funcsynopsisinfo>
<funcdef>void <function>sft_3beep_on_off</function></funcdef>
<paramdef>int <parameter>on_off</parameter></paramdef>
</funcsynopsis>
This results in:
#include "softech.h"
void sft_3beep_on_off(on_off);
Can anyone tell me why I don't see the parmemter type, i.e. I would like it
to look like:
#include "softech.h"
void sft_3beep_on_off(int on_off);
Is <paramdef/> deprecated?
TIA
-jbr