blob: b0ca58f2d0155bf6913d5d43e19136e630d9798b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef GLOBALPREFERENCES_H
#define GLOBALPREFERENCES_H
#if WEBPLUG
std::string GetStrippedPlayerDomain ();
#endif
// Used for hardware stats and webplayer settings.
std::string GetGlobalPreference(const char *key);
bool GetGlobalBoolPreference(const char *key, bool defaultValue);
void SetGlobalPreference(const char *key, std::string value);
void SetGlobalBoolPreference(const char *key, bool value);
#endif
|