Re: [fpc-pascal]trouble compiling a demo

2004-02-18 Thread Michael Van Canneyt
On Wed, 18 Feb 2004, Crabtree, Chad wrote: > I am trying to compile this which is giving me hell > > unit MyError; > > { > Custom error reporting routines. > > *** WINDOWS VERSION *** > } > > interface > > procedure Say(msg : String); > procedure SockError(msg : String); > procedure SockS

[fpc-pascal]trouble compiling a demo

2004-02-18 Thread Crabtree, Chad
I am trying to compile this which is giving me hell unit MyError; { Custom error reporting routines. *** WINDOWS VERSION *** } interface procedure Say(msg : String); procedure SockError(msg : String); procedure SockSay(msg : String); procedure GenError(msg : String);implementation us