~ubuntu-branches/ubuntu/quantal/libtelepathy/quantal

« back to all changes in this revision

Viewing changes to src/tp-constants.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-09-12 19:18:37 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060912191837-gjypdbx0sh2ox9iv
Tags: 0.0.37-0ubuntu1
* New upstream release:
  - 0.0.37:
    - add TP_ prefix to media stream pending state constants
  - 0.0.36:
    - add missing constants
* Merged with Dafydd Harries, only Ubuntu changes are:
  - debian/control: Build-Depends on bash.
  - debian/libtelepathy-dev.install: install *.so
  - debian/patches/01-require-bash-for-fixxml-script.patch: require bash.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
} TelepathyChannelTextMessageType;
95
95
 
96
96
typedef enum {
 
97
TP_CHANNEL_TEXT_MESSAGE_FLAG_TRUNCATED = 1,
 
98
LAST_TP_CHANNEL_TEXT_MESSAGE_FLAG
 
99
} TelepathyChannelTextMessageFlag;
 
100
 
 
101
typedef enum {
97
102
TP_CHANNEL_TEXT_SEND_ERROR_UNKNOWN = 0,
98
103
TP_CHANNEL_TEXT_SEND_ERROR_OFFLINE = 1,
99
104
TP_CHANNEL_TEXT_SEND_ERROR_INVALID_CONTACT = 2,
116
121
} TelepathyChannelGroupFlags;
117
122
 
118
123
typedef enum {
 
124
TP_CHANNEL_GROUP_CHANGE_REASON_NONE = 0,
 
125
TP_CHANNEL_GROUP_CHANGE_REASON_OFFLINE = 1,
 
126
TP_CHANNEL_GROUP_CHANGE_REASON_KICKED = 2,
 
127
TP_CHANNEL_GROUP_CHANGE_REASON_BUSY = 3,
 
128
TP_CHANNEL_GROUP_CHANGE_REASON_INVITED = 4,
 
129
TP_CHANNEL_GROUP_CHANGE_REASON_BANNED = 5,
 
130
LAST_TP_CHANNEL_GROUP_CHANGE_REASON
 
131
} TelepathyChannelGroupChangeReason;
 
132
 
 
133
typedef enum {
119
134
TP_CHANNEL_HOLD_STATE_NONE = 0,
120
135
TP_CHANNEL_HOLD_STATE_SEND_ONLY = 1,
121
136
TP_CHANNEL_HOLD_STATE_RECV_ONLY = 2,
157
172
} TelepathyMediaStreamDirection;
158
173
 
159
174
typedef enum {
160
 
  MEDIA_STREAM_PENDING_LOCAL_SEND = 1,
161
 
  MEDIA_STREAM_PENDING_REMOTE_SEND = 2
 
175
TP_MEDIA_STREAM_PENDING_LOCAL_SEND = 1,
 
176
TP_MEDIA_STREAM_PENDING_REMOTE_SEND = 2
162
177
} TelepathyMediaStreamPending;
163
178
 
164
179
typedef enum {