blob: 7270a6d6db268b4bda33533afd4091de7e005f92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _SLACK_MENUS_H_
#define _SLACK_MENUS_H_
#define CMI_POSITION -201001000
enum CMI_MENU_ITEMS
{
CMI_AUTH_REQUEST,
CMI_AUTH_GRANT,
CMI_MAX // this item shall be the last one
};
#define SMI_POSITION 200000
enum SMI_MENU_ITEMS
{
SMI_MAX // this item shall be the last one
};
#endif //_SLACK_MENUS_H_
|