Re: [fpc-pascal] assitent with Macro translation

2008-03-06 Thread Marco van de Voort
> I've started binding libsvn to FPC, and I have encountered the > following macro that I do not know how to translate: > #define APR_ARRAY_IDX(ary,i,type) (((type *)(ary)->elts)[i]) > > The usage of such macro is as follows: APR_ARRAY_IDX (new_entries, i, > const char *); > > How can I translat

[fpc-pascal] assitent with Macro translation

2008-03-06 Thread ik
Hello, I've started binding libsvn to FPC, and I have encountered the following macro that I do not know how to translate: #define APR_ARRAY_IDX(ary,i,type) (((type *)(ary)->elts)[i]) The usage of such macro is as follows: APR_ARRAY_IDX (new_entries, i, const char *); How can I translate the "t