Doesn't this smell like a preprocessor thing? Some header file might
include
#define icon_width 16
#define icon_height 16
Of course it is in bade taste to do #define in lower case, and actually
it is in bad
taste to use #define at all instead of const or enums, but this could be
a legacy? Anyway that's the first thing that pops to my mind. It can be
ascertained easily,
by generating the preprocessed text.
Hope that helps,
Patrick
xie Yisong wrote:
> Now I have a strange error when I compiled a Xwin Sample.
> XRootSample.c:24: parse error before '16'
> What does this mean?
> In Line 24, I wrote:
> unsigned int icon_width, icon_height;
>
> Michael