comparison include/id.h @ 11:799b6008db8e

auto-upgrade.
author pyon@macmini
date Mon, 12 Nov 2018 19:35:50 +0900
parents 36811fd22bd2
children f5ffc34f045a
comparison
equal deleted inserted replaced
10:36811fd22bd2 11:799b6008db8e
1 // Filename : id.h 1 // Filename : id.h
2 // Last Change: 2018-11-08 –Ø 13:58:34. 2 // Last Change: 2018-11-09 ‹à 10:54:21.
3 // 3 //
4 4
5 #ifndef __ID_H__ 5 #ifndef __ID_H__
6 #define __ID_H__ 6 #define __ID_H__
7 7
8 #include <wx/wx.h> 8 #include <wx/wx.h>
9 9
10 #define RSVER "1.4" 10 #define RSVER "1.5"
11 #define RSRELEASE "2018.11.01" 11 #define RSRELEASE "2018.11.12"
12 12
13 enum { 13 enum {
14 /* for mainframe */ 14 /* for mainframe */
15 ID_MAIN = wxID_HIGHEST + 1, 15 ID_MAIN = wxID_HIGHEST + 1,
16 ID_SEARCH, 16 ID_SEARCH,
31 ID_LOGOUT, 31 ID_LOGOUT,
32 32
33 /* for auth */ 33 /* for auth */
34 ID_UID, 34 ID_UID,
35 ID_PW, 35 ID_PW,
36
37 /* for mange db */
38 ID_MNGBLD,
39 ID_MNGUPLD,
40 ID_MNGEXIT,
36 }; 41 };
37 42
38 #endif // __ID_H__ 43 #endif // __ID_H__
39 44