driver.h
author tron
Tue, 07 Nov 2006 15:53:20 +0000
changeset 5050 b928a1036b22
parent 2832 acf08469a0c6
child 5170 56c12a62af49
permissions -rw-r--r--
(svn r7100) Evaluate the necessary flags for SDL once per make run, not every time the CFLAGS/LIBS variables are used
/* $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 */