I have defined a struct like so:
Code:
struct z3D_OBJECT {
    HINSTANCE hDll;
    char *FlNm;
};
then i tried to set some variables as my struct:
Code:
z3D_OBJECT 3doMain;
z3D_OBJECT *3doObjs;
...those are in a class header... I am getting 3 strange errors when compiling the file:

Syntax Error: 'bad sufix on number'
Syntax Error: 'constant'
unexpected token(s) preceeding ';'

I get those same three errors for each time I declare a variable of type, z3D_OBJECT.

Does any1 know whats wrong?