src/newgrf_config.cpp
changeset 6016 9d7b851ffe1c
parent 5952 701521003c56
child 6268 4b5241e5dd10
child 6399 d704bf2ec4ee
equal deleted inserted replaced
6015:9b25ff032edd 6016:9d7b851ffe1c
   350 
   350 
   351 #ifdef ENABLE_NETWORK
   351 #ifdef ENABLE_NETWORK
   352 
   352 
   353 /** Structure for UnknownGRFs; this is a lightweight variant of GRFConfig */
   353 /** Structure for UnknownGRFs; this is a lightweight variant of GRFConfig */
   354 typedef struct UnknownGRF UnknownGRF;
   354 typedef struct UnknownGRF UnknownGRF;
   355 struct UnknownGRF {
   355 struct UnknownGRF : public GRFIdentifier {
   356 	UnknownGRF *next;
   356 	UnknownGRF *next;
   357 	uint32 grfid;
       
   358 	uint8  md5sum[16];
       
   359 	char   name[NETWORK_GRF_NAME_LENGTH];
   357 	char   name[NETWORK_GRF_NAME_LENGTH];
   360 };
   358 };
   361 
   359 
   362 /**
   360 /**
   363  * Finds the name of a NewGRF in the list of names for unknown GRFs. An
   361  * Finds the name of a NewGRF in the list of names for unknown GRFs. An