-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate carbon metadata and function prototypes in headers (#33)
This is needed to successfully build dependent projects such as Lurch4Adium
- Loading branch information
Showing
4 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,4 @@ | |
# define CARBONS_VERSION "0.2.3-dev" | ||
# define CARBONS_AUTHOR "Richard Bayerle <[email protected]>" | ||
|
||
void carbons_xml_received_cb(PurpleConnection * gc_p, xmlnode ** stanza_pp); | ||
void carbons_xml_stripped_cb(PurpleConnection * gc_p, xmlnode ** stanza_pp); | ||
void carbons_discover(PurpleAccount * acc_p); | ||
void carbons_discover_cb(JabberStream * js_p, const char * from, | ||
JabberIqType type, const char * id, | ||
xmlnode * packet_p, gpointer data_p); | ||
void carbons_enable_cb(JabberStream * js_p, const char * from, | ||
JabberIqType type, const char * id, | ||
xmlnode * packet_p, gpointer data_p); | ||
|
||
void carbons_account_connect_cb(PurpleAccount * acc_p); | ||
gboolean carbons_plugin_load(PurplePlugin * plugin_p); | ||
|
||
#endif /* __CARBONS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#ifndef __CARBONS_INT_H | ||
# define __CARBONS_INT_H | ||
|
||
void carbons_xml_received_cb(PurpleConnection * gc_p, xmlnode ** stanza_pp); | ||
void carbons_xml_stripped_cb(PurpleConnection * gc_p, xmlnode ** stanza_pp); | ||
void carbons_discover(PurpleAccount * acc_p); | ||
void carbons_discover_cb(JabberStream * js_p, const char * from, | ||
JabberIqType type, const char * id, | ||
xmlnode * packet_p, gpointer data_p); | ||
void carbons_enable_cb(JabberStream * js_p, const char * from, | ||
JabberIqType type, const char * id, | ||
xmlnode * packet_p, gpointer data_p); | ||
|
||
void carbons_account_connect_cb(PurpleAccount * acc_p); | ||
gboolean carbons_plugin_load(PurplePlugin * plugin_p); | ||
|
||
#endif /* CARBONS_INTERNAL_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters