driver.h
author Darkvater
Mon, 13 Mar 2006 23:13:21 +0000
changeset 3193 d151574ef3cf
parent 2832 acf08469a0c6
child 5170 56c12a62af49
permissions -rw-r--r--
(svn r3853) - Fix a change of SetDParam64 to SetDParam in r3713 that caused slightly vibrating text when pressing the cheat-button. Thanks to peter1138 for noticing.
/* $Id$ */

#ifndef DRIVER_H
#define DRIVER_H

void LoadDriver(int driver, const char *name);

bool GetDriverParamBool(const char* const* parm, const char* name);
int GetDriverParamInt(const char* const* parm, const char* name, int def);

char *GetDriverList(char* p);

#endif /* DRIVER_H */