Frameworks/libpurple.framework/Versions/0.6.2/Headers/notification.h
author Zachary West <zacw@adium.im>
Fri Aug 21 13:25:11 2009 -0700 (2009-08-21)
changeset 2592 e8d15275025e
parent 2489 Frameworks/libpurple.framework/Versions/0.6.0/Headers/notification.h@56d91bf40dd8
permissions -rw-r--r--
im.pidgin.adium.1-4 at 267c6165e02e34318a1823960bd04c0639952f73
     1 /**
     2  * @file notification.h Notification server functions
     3  *
     4  * purple
     5  *
     6  * Purple is the legal property of its developers, whose names are too numerous
     7  * to list here.  Please refer to the COPYRIGHT file distributed with this
     8  * source distribution.
     9  *
    10  * This program is free software; you can redistribute it and/or modify
    11  * it under the terms of the GNU General Public License as published by
    12  * the Free Software Foundation; either version 2 of the License, or
    13  * (at your option) any later version.
    14  *
    15  * This program is distributed in the hope that it will be useful,
    16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18  * GNU General Public License for more details.
    19  *
    20  * You should have received a copy of the GNU General Public License
    21  * along with this program; if not, write to the Free Software
    22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
    23  */
    24 #ifndef _MSN_NOTIFICATION_H_
    25 #define _MSN_NOTIFICATION_H_
    26 
    27 /*MSN protocol challenge info*/
    28 
    29 /*MSNP15 challenge: WLM 8.5.1288.816*/
    30 #define MSNP15_WLM_PRODUCT_KEY "ILTXC!4IXB5FB*PX"
    31 #define MSNP15_WLM_PRODUCT_ID "PROD0119GSJUC$18"
    32 
    33 /*MSNP13 challenge*/
    34 #define MSNP13_WLM_PRODUCT_KEY	"O4BG@C7BWLYQX?5G"
    35 #define MSNP13_WLM_PRODUCT_ID	"PROD01065C%ZFN6F"
    36 
    37 #define MSNP10_PRODUCT_KEY		"VT6PX?UQTM4WM%YR"
    38 #define MSNP10_PRODUCT_ID		"PROD0038W!61ZTF9"
    39 
    40 typedef struct _MsnNotification MsnNotification;
    41 
    42 #include "session.h"
    43 #include "servconn.h"
    44 #include "cmdproc.h"
    45 #include "user.h"
    46 
    47 struct _MsnNotification
    48 {
    49 	MsnSession *session;
    50 
    51 	/**
    52 	 * This is a convenience pointer that always points to
    53 	 * servconn->cmdproc
    54 	 */
    55 	MsnCmdProc *cmdproc;
    56 	MsnServConn *servconn;
    57 
    58 	gboolean in_use;
    59 };
    60 
    61 typedef void (*MsnFqyCb)(MsnSession *session, const char *passport, MsnNetwork network, gpointer data);
    62 
    63 #include "state.h"
    64 void uum_send_msg(MsnSession *session,MsnMessage *msg);
    65 
    66 void msn_notification_end(void);
    67 void msn_notification_init(void);
    68 
    69 void msn_notification_add_buddy_to_list(MsnNotification *notification,
    70 					MsnListId list_id, MsnUser *user);
    71 void msn_notification_rem_buddy_from_list(MsnNotification *notification,
    72 					  MsnListId list_id, MsnUser *user);
    73 
    74 void msn_notification_send_fqy(MsnSession *session,
    75                                const char *payload, int payload_len,
    76                                MsnFqyCb cb, gpointer cb_data);
    77 
    78 MsnNotification *msn_notification_new(MsnSession *session);
    79 void msn_notification_destroy(MsnNotification *notification);
    80 gboolean msn_notification_connect(MsnNotification *notification,
    81 				  const char *host, int port);
    82 void msn_notification_disconnect(MsnNotification *notification);
    83 void msn_notification_dump_contact(MsnSession *session);
    84 
    85 /**
    86  * Closes a notification.
    87  *
    88  * It's first closed, and then disconnected.
    89  *
    90  * @param notification The notification object to close.
    91  */
    92 void msn_notification_close(MsnNotification *notification);
    93 
    94 void msn_got_login_params(MsnSession *session, const char *ticket, const char *response);
    95 
    96 #endif /* _MSN_NOTIFICATION_H_ */