Changeset 808825e for protocols


Ignore:
Timestamp:
2016-05-26T02:48:08Z (8 years ago)
Author:
jgeboski <jgeboski@…>
Branches:
master
Children:
35712b7
Parents:
d28fe1c4
git-author:
jgeboski <jgeboski@…> (15-05-16 20:40:15)
git-committer:
jgeboski <jgeboski@…> (26-05-16 02:48:08)
Message:

Show the enabled/disabled protocols in the 'plugins' command output

Location:
protocols
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    rd28fe1c4 r808825e  
    228228        load_plugins();
    229229#endif
     230}
     231
     232GList *get_protocols()
     233{
     234        return protocols;
     235}
     236
     237GList *get_protocols_disabled()
     238{
     239        return disabled_protocols;
    230240}
    231241
  • protocols/nogaim.h

    rd28fe1c4 r808825e  
    287287/* im_api core stuff. */
    288288void nogaim_init();
     289G_MODULE_EXPORT GList *get_protocols();
     290G_MODULE_EXPORT GList *get_protocols_disabled();
    289291G_MODULE_EXPORT GSList *get_connections();
    290292G_MODULE_EXPORT struct prpl *find_protocol(const char *name);
Note: See TracChangeset for help on using the changeset viewer.