19 lines
309 B
C
19 lines
309 B
C
|
/*
|
||
|
* Copyright 2009, Andrea Anzani. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _NOTIFY_MESSAGE_H
|
||
|
#define _NOTIFY_MESSAGE_H
|
||
|
|
||
|
enum {
|
||
|
STR_CONTACT_NAME,
|
||
|
STR_PERSONAL_STATUS,
|
||
|
|
||
|
PTR_AVATAR_BITMAP,
|
||
|
|
||
|
INT_ACCOUNT_STATUS,
|
||
|
INT_CONTACT_STATUS
|
||
|
};
|
||
|
|
||
|
#endif // _NOTIFY_MESSAGE_H
|