Copyright 2004 by M. Uli Kusterer Tue, 30 Nov -1901 08:00:00 GMT Comments on article book11 at Zathras.de http://www.zathras.de/angelweb/book11.htm book11 Comments witness_dot_of_dot_teachtext_at_gmx_dot_net (M. Uli Kusterer) witness_dot_of_dot_teachtext_at_gmx_dot_net (M. Uli Kusterer) en-us Comment 2 by Withan http://masters-of-the-void.com/book11.htm#comment2 http://masters-of-the-void.com/book11.htm#comment2 enum engineConfigs
{
inline = 0,
flat = 1,
V = 2,
W = 3
};


This gave me an error. I figured out that "inline" must be a word reserved by C or one of its libraries, so I changed it to:

enum engineConfigs
{
inlineEng = 0,
flat = 1,
V = 2,
W = 3
};


That was okay.
Comment 1 by Donald http://masters-of-the-void.com/book11.htm#comment1 http://masters-of-the-void.com/book11.htm#comment1 Donald writes:
Here I am warming up my faded memory of old day C concepts which I learnt 20 years ago, with today's powerful IDE Xcode 3.2.2.

Thanks a lot for your carefully organized tutorial!