src/openttd.h
branchcpp_gui
changeset 6258 a2f86b8fd99b
parent 6253 23983700e3d7
child 6264 9fc3b5467396
equal deleted inserted replaced
6257:2ffe947969ca 6258:a2f86b8fd99b
    31 
    31 
    32 // Forward declarations of structs.
    32 // Forward declarations of structs.
    33 typedef struct Vehicle Vehicle;
    33 typedef struct Vehicle Vehicle;
    34 typedef struct Depot Depot;
    34 typedef struct Depot Depot;
    35 typedef struct Waypoint Waypoint;
    35 typedef struct Waypoint Waypoint;
    36 typedef struct Window Window;
    36 typedef struct BaseWindow BaseWindow;
    37 typedef struct Station Station;
    37 typedef struct Station Station;
    38 typedef struct ViewPort ViewPort;
    38 typedef struct ViewPort ViewPort;
    39 typedef struct Town Town;
    39 typedef struct Town Town;
    40 typedef struct NewsItem NewsItem;
    40 typedef struct NewsItem NewsItem;
    41 typedef struct Industry Industry;
    41 typedef struct Industry Industry;
   381 	GetSlopeTilehProc *get_slope_tileh_proc;
   381 	GetSlopeTilehProc *get_slope_tileh_proc;
   382 } TileTypeProcs;
   382 } TileTypeProcs;
   383 
   383 
   384 
   384 
   385 enum WindowClass {
   385 enum WindowClass {
   386 	WC_NONE,
   386 	WC_UNKNOWN = -1,
       
   387 	WC_NONE = 0,
   387 	WC_MAIN_WINDOW = WC_NONE,
   388 	WC_MAIN_WINDOW = WC_NONE,
   388 	WC_MAIN_TOOLBAR,
   389 	WC_MAIN_TOOLBAR,
   389 	WC_STATUS_BAR,
   390 	WC_STATUS_BAR,
   390 	WC_BUILD_TOOLBAR,
   391 	WC_BUILD_TOOLBAR,
   391 	WC_NEWS_WINDOW,
   392 	WC_NEWS_WINDOW,