hello, Can you please tell me how to include "C" header file in a pascal program ( GPC on linux)
thanks and regards ravi
-- Life is like a mirror, we get the best results when we smile at it. _________________________________________________ R.Rave Kumaar, Generic Data Tools, Alcatel Development Centre, Chennai.
Ph : +91-44-2349961 Xtn : 7135
Hi!
On Tue, Apr 24, 2001 at 06:25:37PM +0530, Ramalingam Ravekumar wrote:
Can you please tell me how to include "C" header file in a pascal program ( GPC on linux)
Just include your header in a C-File, e.g. foo.c ===== #include <bar.h>
some more procs
---------------------
foo.pas ======= unit foo;
interface ... implementation {$L foo.c} ... end.
Eike