File: ControlCommands.h

package info (click to toggle)
ickle 0.3.2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,600 kB
  • ctags: 1,172
  • sloc: cpp: 9,896; sh: 6,914; perl: 285; makefile: 173
file content (40 lines) | stat: -rw-r--r-- 930 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
/*
 * Copyright (C) 2002 Dominic Sacr <bugcreator@gmx.de>.
 *
 * 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.
 *
 */
 
#ifndef CONTROLCOMMANDS_H
#define CONTROLCOMMANDS_H

enum CommandType
{
  CMD_SET_STATUS,
  CMD_GET_STATUS,
  CMD_SET_INVISIBLE,
  CMD_GET_INVISIBLE,
  CMD_SET_AWAY_MESSAGE,
  CMD_GET_AWAY_MESSAGE,
  CMD_ADD_CONTACT,
  CMD_SEND_MESSAGE,
  CMD_SET_SETTING,
  CMD_GET_SETTING,
  CMD_QUIT
};

enum CommandMessageType
{
 MESSAGE_Normal,
 MESSAGE_SMS
};

#endif