diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-05-17 18:00:05 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-05-17 18:00:05 +0000 |
commit | 0d8ae90913bd0b53c6af709928e7f5e5a3fc9b50 (patch) | |
tree | 85aaf04425373593c56bb413a158f9102d5ec3ad /protocols/FacebookRM/src/constants.h | |
parent | 1c917ac3f485ffac7b4316d633a344fbafcedb78 (diff) |
Facebook: Added few options items - use local time, send seen when marking read, select server to open urls.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4703 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/constants.h')
-rw-r--r-- | protocols/FacebookRM/src/constants.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/constants.h b/protocols/FacebookRM/src/constants.h index 647576a4a9..82d6015931 100644 --- a/protocols/FacebookRM/src/constants.h +++ b/protocols/FacebookRM/src/constants.h @@ -121,8 +121,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define FACEBOOK_CONTACT_APPROVE 4 // contact that is asking us for approval of friendship
// News Feed types
-static const struct
-{
+static const struct {
const char *name;
const char *id;
} feed_types[] = {
@@ -132,4 +131,13 @@ static const struct { LPGEN("Photos"), "app_2305272732_2392950137" },
{ LPGEN("Links"), "app_2309869772" },
{ LPGEN("Apps and Games"), "appsandgames" },
+};
+
+static const struct {
+ const char *id;
+ const char *name;
+} server_types[] = {
+ { "www.facebook.com", LPGEN("Classic website") },
+ { "m.facebook.com", LPGEN("Mobile website") },
+ { "touch.facebook.com", LPGEN("Smartphone website") },
};
\ No newline at end of file |