diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-04 20:45:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-04 20:45:00 +0300 |
commit | 5b32a855e518f67589fd49837795a605a19badce (patch) | |
tree | 58e6664efc8c826a35e72e4d1a54e8e957b75c42 /protocols/FacebookRM/src/dialogs.cpp | |
parent | 823e3839b108658811f689f959f51058effd82ac (diff) |
code reordering, not to reassemble the whole project on each change in headers
Diffstat (limited to 'protocols/FacebookRM/src/dialogs.cpp')
-rw-r--r-- | protocols/FacebookRM/src/dialogs.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/protocols/FacebookRM/src/dialogs.cpp b/protocols/FacebookRM/src/dialogs.cpp index e3988b3907..b5c1c6645f 100644 --- a/protocols/FacebookRM/src/dialogs.cpp +++ b/protocols/FacebookRM/src/dialogs.cpp @@ -22,6 +22,32 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdafx.h" +// News Feed types +const ttype feed_types[3] = +{ + { LPGEN("Top News"), "h_nor" }, + { LPGEN("Most Recent"), "h_chr" }, + { LPGEN("Pages"), "pages" }, +}; + +// Server types +const ttype server_types[3] = +{ + { LPGEN("Classic website"), "www.facebook.com" }, + { LPGEN("Mobile website"), "m.facebook.com" }, + { LPGEN("Smartphone website"), "touch.facebook.com" }, +}; + +// Status privacy types +const ttype privacy_types[5] = +{ + { LPGEN("Public"), "80" }, + { LPGEN("Friends of friends"), "111&audience[0][custom_value]=50" }, + { LPGEN("Friends"), "40" }, + { LPGEN("Friends except acquaintances"), "127" }, + { LPGEN("Only me"), "10" }, +}; + static BOOL LoadDBCheckState(FacebookProto* ppro, HWND hwnd, int idCtrl, const char* szSetting, BYTE bDef) { BOOL state = ppro->getByte(szSetting, bDef); |