Re: [Doxygen-users] char_varying type in VOS C and doxygen
Brought to you by:
dimitri
From: Uwe S. <u.s...@gm...> - 2015-01-24 16:32:35
|
Hi Dimitri, great, that looks good! I didn't know that one could parse the numbers in that way. Is this style documented somewhere? Thanks again for your quick help! @Ron, thank you, too! Your perl script looks also nice, maybe I'll need it in the future for other purposes. :) But Dmitri's one-liner solved this issue for me. Ciao, Uwe Dimitri van Heesch <do...@gm...> schrieb am [Fri, 23.01.2015 20:56]: > Hi Uwe, > > You could use > > PREDEFINED = char_varying(n)="char_varying_##n" > > To expand char_varying(256) to char_varying_256 and then during post processing replace it back to char_varying(256). > > Regards, > Dimitri > > > On 22 Jan 2015, at 13:47 , Uwe Scholz <u.s...@gm...> wrote: > > > > Imagine this file is given: > > ---------------------- > > /** @file foo.c > > */ > > char_varying(256) var; > > main(){} > > ----------------------(1) > > > > [...] > > > > What I tried already: > > > > MACRO_EXPANSION = YES > > EXPAND_ONLY_PREDEF = YES > > PREDEFINED = char_varying()= > > > > [...] What I would like to see here is: > > ---------------------- > > foo.c File Reference > > Functions > > main () > > > > Variables > > char_varying(256) var > > ----------------------(4) > > > > It would be great if someone can help me out here. > > > > Best wishes > > Uwe |