~ubuntu-branches/ubuntu/hardy/steam/hardy

« back to all changes in this revision

Viewing changes to server/include/events.h

  • Committer: Bazaar Package Importer
  • Author(s): Alain Schroeder
  • Date: 2006-11-21 16:03:12 UTC
  • mfrom: (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061121160312-nf96y6nihzsyd2uv
Tags: 2.2.31-3
Add patch to prevent inconsistent data after shutdown.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2000-2004  Thomas Bopp, Thorsten Hampel, Ludger Merkens
 
1
/* Copyright (C) 2000-2006  Thomas Bopp, Thorsten Hampel, Ludger Merkens
2
2
 *
3
3
 *  This program is free software; you can redistribute it and/or modify
4
4
 *  it under the terms of the GNU General Public License as published by
14
14
 *  along with this program; if not, write to the Free Software
15
15
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
16
 * 
17
 
 * $Id: events.h,v 1.1.1.1 2005/02/23 14:47:21 cvs Exp $
 
17
 * $Id: events.h,v 1.1.1.1 2006/03/27 12:40:10 exodusd Exp $
18
18
 */
19
19
 
20
20
#ifndef _EVENT_H
30
30
#define EVENTS_MONITORED         0x20000000
31
31
#define EVENTS_SECOND            0x40000000
32
32
 
 
33
#define EVENT_MASK               0xffffffff - EVENTS_MONITORED
 
34
 
33
35
 
34
36
#define EVENT_ENTER_INVENTORY          1
35
37
#define EVENT_LEAVE_INVENTORY          2
70
72
#define EVENT_REMOVE_ANNOTATION  (128|EVENTS_SECOND)
71
73
#define EVENT_DOWNLOAD_FINISHED  (256|EVENTS_SECOND)
72
74
#define EVENT_LOCK               (512|EVENTS_SECOND)
 
75
#define EVENT_USER_JOIN_GROUP    (1024|EVENTS_SECOND)
 
76
#define EVENT_USER_LEAVE_GROUP   (2048|EVENTS_SECOND)
 
77
 
73
78
#define EVENT_USER_NEW_TICKET    (EVENT_USER_CHANGE_PW|EVENTS_SECOND)
74
79
 
75
80
#define EVENTS_OBSERVE (EVENT_SAY|EVENT_ENTER_INVENTORY|EVENT_LEAVE_INVENTORY)