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

(svn r14908) -Codechange: Add support for text parameters.

This commit is contained in:
2009-01-08 11:40:42 +00:00
parent 6b6fd36050
commit 45f1d83bc7
2 changed files with 2 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ char *_ini_musicdriver;
char *_ini_blitter;
static const char* GetDriverParam(const char* const* parm, const char* name)
const char* GetDriverParam(const char* const* parm, const char* name)
{
size_t len;

View File

@@ -10,6 +10,7 @@
#include "string_func.h"
#include <map>
const char *GetDriverParam(const char * const *parm, const char *name);
bool GetDriverParamBool(const char * const *parm, const char *name);
int GetDriverParamInt(const char * const *parm, const char *name, int def);