From 5b32a855e518f67589fd49837795a605a19badce Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 4 Jan 2018 20:45:00 +0300 Subject: code reordering, not to reassemble the whole project on each change in headers --- protocols/FacebookRM/src/dialogs.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'protocols/FacebookRM/src/dialogs.cpp') 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 . #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); -- cgit v1.2.3