Re: Making Include files
- Posted by Irv Mullins <irvm at ellijay.com> Aug 24, 2001
- 457 views
On Friday 24 August 2001 19:28, dstanger at belco.bc.ca wrote: > I am trying to use a procedure that I wrote as an include file but am > having problems. I have saved it with a .e extension and placed it in the > include directory. The procedure uses video_config() so it won't work > unless graphics.e is present. I tried to include ghraphics.e within the > procedure but it doesn't work. > Any suggestions? includes can't be inside a procedure or function. It's generall best to put them at the very top of the file. Regards, Irv