mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
19 lines
255 B
C
19 lines
255 B
C
|
#ifndef _CFG_H_
|
||
|
#define _CFG_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
char update_path[150];
|
||
|
|
||
|
void cfg_set(char *name, char *val);
|
||
|
bool cfg_parsefile(char * fname, void (*set_func)(char*, char*));
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|