3733da1af7
In qapple we use QSettings. Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
12 lines
497 B
C
12 lines
497 B
C
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include "linux/wincompat.h"
|
|
|
|
BOOL RegLoadString (LPCTSTR section, LPCTSTR key, BOOL peruser, LPTSTR buffer, DWORD chars);
|
|
BOOL RegLoadValue (LPCTSTR section, LPCTSTR key, BOOL peruser, DWORD *value);
|
|
BOOL RegLoadValue (LPCTSTR section, LPCTSTR key, BOOL peruser, BOOL *value);
|
|
void RegSaveString (LPCTSTR section, LPCTSTR key, BOOL peruser, LPCTSTR buffer);
|
|
void RegSaveValue (LPCTSTR section, LPCTSTR key, BOOL peruser, DWORD value);
|
|
|
|
#endif // SETTINGS_H
|