blob: e7c0d10340d4656b80923ab2fe00098ba6cb217f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _TOX_MENUS_H_
#define _TOX_MENUS_H_
#define CMI_POSITION -201001000
enum CMI_MENU_ITEMS
{
CMI_MAX // this item shall be the last one
};
#define SMI_POSITION 200000
enum SMI_MENU_ITEMS
{
SMI_TOXID_COPY,
SMI_PASSWORD,
SMI_PASSWORD_CREATE,
SMI_PASSWORD_CHANGE,
SMI_PASSWORD_REMOVE,
SMI_MAX // this item shall be the last one
};
#endif //_TOX_MENUS_H_
|