1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-02 11:29:10 +00:00

(svn r7231) -Codechange: rename ini_get_variable to GetVariableAddress for use both in settings.c

and saveload.c
This commit is contained in:
Darkvater
2006-11-21 20:20:30 +00:00
parent 4113d151cd
commit 2a91c8d723
5 changed files with 21 additions and 21 deletions

View File

@@ -271,6 +271,15 @@ static inline VarType GetVarFileType(VarType type)
return type & 0xF; // GB(type, 0, 4);
}
/** Get the address of the variable. Which one to pick depends on the object
* pointer. If it is NULL we are dealing with global variables so the address
* is taken. If non-null only the offset is stored in the union and we need
* to add this to the address of the object */
static inline void *GetVariableAddress(const void *object, const SaveLoad *sld)
{
return (byte*)object + (ptrdiff_t)sld->address;
}
int64 ReadValue(const void *ptr, VarType conv);
void WriteValue(void *ptr, VarType conv, int64 val);