e25650eb028d5d7dd10d99047d009ee4de450591
[citadel.git] / citadel / modules / extnotify / extnotify.h
1 /* 
2  * File:   extnotify.h
3  * Author: Mathew McBride <matt@mcbridematt.dhs.org> / <matt@comalies>
4  *
5  * Created on January 13, 2008, 9:34 PM
6  */
7
8 #ifdef  __cplusplus
9 extern "C" {
10 #endif
11
12 #define FUNAMBOL_CONFIG_TEXT "funambol"
13 #define PAGER_CONFIG_MESSAGE "__ Push email settings __"
14 #define PAGER_CONFIG_TEXT  "textmessage"    
15
16 #define FUNAMBOL_WS "/funambol/services/admin"
17
18 int notify_funambol_server(char *user);
19
20 char *extNotify_getPrefs(long configMsgNum, char *configMsg);
21 long extNotify_getConfigMessage(char *username);
22 void process_notify(long msgnum, void *usrdata);
23
24 #ifdef  __cplusplus
25 }
26 #endif
27
28