blob: 268bc81a8052de7d240a783025513f2af33893bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __OSCAR_BUDDYLIST_H__
#define __OSCAR_BUDDYLIST_H__
#define AIM_CB_FAM_BUD 0x0003
/*
* SNAC Family: Buddy List Management Services.
*/
#define AIM_CB_BUD_ERROR 0x0001
#define AIM_CB_BUD_REQRIGHTS 0x0002
#define AIM_CB_BUD_RIGHTSINFO 0x0003
#define AIM_CB_BUD_ADDBUDDY 0x0004
#define AIM_CB_BUD_REMBUDDY 0x0005
#define AIM_CB_BUD_REJECT 0x000a
#define AIM_CB_BUD_ONCOMING 0x000b
#define AIM_CB_BUD_OFFGOING 0x000c
#define AIM_CB_BUD_DEFAULT 0xffff
#endif /* __OSCAR_BUDDYLIST_H__ */
|