/* * Copyright 2009, Andrea Anzani. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef _STATES_H #define _STATES_H #include const int32 S_OFFLINE = 0x0; const int32 S_ONLINE = 0x1; const int32 S_AWAY = 0x2; const int32 S_XA = 0x3; const int32 S_DND = 0x4; const int32 S_CHAT = 0x5; const int32 S_SEND = 0x6; #endif // _STATES_H