blob: 3c8218cb40d875bbc38d8c68490990e8941a1ea7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef __RCFILE_H__
#define __RCFILE_H__
void LoadRCFile(const char* filename);
void DeleteParams(void);
void ApplyParams(const char* name);
const char* GetLastApplyName();
#endif //__RCFILE_H__
|