diff options
author | jgeboski <jgeboski@gmail.com> | 2016-05-15 16:40:15 -0400 |
---|---|---|
committer | jgeboski <jgeboski@gmail.com> | 2016-05-25 22:48:08 -0400 |
commit | 808825eda6d90aeabd754f70eee52e2b0165749e (patch) | |
tree | eae6be0e9b5461cf28fe2560de14d714c0180f3a /protocols/nogaim.c | |
parent | d28fe1c4f463314a79f0a71f6f8a01db53e37253 (diff) |
Show the enabled/disabled protocols in the 'plugins' command output
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 9ed3b64b..c902258a 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -229,6 +229,16 @@ void nogaim_init() #endif } +GList *get_protocols() +{ + return protocols; +} + +GList *get_protocols_disabled() +{ + return disabled_protocols; +} + GSList *get_connections() { return connections; |