--- Brian Preston <[EMAIL PROTECTED]> wrote:
> <SNIP>
> #include "scDataTypes.h"  // Structure Definitions
> 
> All that this scDataTypes.h file contains is this : 
> 
> typedef struct {
>       Byte Terrain;                   
>       Byte X;                                 
>       Byte Y;                                 
> } TILE;
> 
> and the errors : 
> 
> Error   : ';' expected
> <SNIP>

Try

typedef struct {
        UInt8 Terrain;                  
        UInt8 X;                                        
        UInt8 Y;                                        
} TILE;

Or, if you prefer

typedef struct {
        unsigned char Terrain;                  
        unsigned char X;                                        
        unsigned char Y;                                        
} TILE;


__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to