File: pn_status.h

package info (click to toggle)
msn-pecan 0.1.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,932 kB
  • ctags: 2,310
  • sloc: ansic: 22,265; makefile: 372; sh: 7
file content (60 lines) | stat: -rw-r--r-- 1,540 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
 * Copyright (C) 2007-2009 Felipe Contreras
 * Copyright (C) 1998-2006 Pidgin (see pidgin-copyright)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef PN_STATUS_H
#define PN_STATUS_H

#include <glib.h>

/**
 * Status types.
 */
typedef enum
{
    PN_STATUS_OFFLINE,
    PN_STATUS_ONLINE,
    PN_STATUS_BUSY,
    PN_STATUS_IDLE,
    PN_STATUS_BRB,
    PN_STATUS_AWAY,
    PN_STATUS_PHONE,
    PN_STATUS_LUNCH,
    PN_STATUS_HIDDEN,
    PN_STATUS_WRONG,
} PecanStatus;

struct MsnSession;

/**
 * Updates the status of the user.
 *
 * @param session The MSN session.
 */
void pn_update_status (struct MsnSession *session);

/**
 * Updates the personal message of the user.
 *
 * @param session The MSN session.
 */
void pn_update_personal_message (struct MsnSession *session);

gboolean pn_timeout_tune_status (gpointer data);

#endif /* PN_STATUS_H */