Re: [BUGS] ECPG does not recognise typedefs

2003-01-31 Thread Bruce Momjian
Is your typedef in a 'declare' section? --- Fredy K. GMX wrote: > Postgre Version: 7.3 > OS: Linux Mandrake 9.0 > > In a C-File I have included a header file which globaly defines some typedefs > of variable types like fol

[BUGS] ECPG does not recognise typedefs

2003-01-28 Thread Fredy K. GMX
Postgre Version: 7.3 OS: Linux Mandrake 9.0 In a C-File I have included a header file which globaly defines some typedefs of variable types like following: typedef long MYLONG; When I write in the file the following definition: EXEC SQL begin declare section; static MYLONG sqlLongHostVar; EX