Mercurial > mercurial > hgweb_rsearcher.cgi
annotate include/id.h @ 5:e3b10fb860b3
release v1.0.
author | pyon@macmini |
---|---|
date | Mon, 22 Oct 2018 22:17:02 +0900 |
parents | 06342fc544e4 |
children | 9a8b581c1993 |
rev | line source |
---|---|
4 | 1 // Filename : id.h |
5 | 2 // Last Change: 2018-10-22 ŒŽ 12:43:44. |
4 | 3 // |
4 | |
5 #ifndef __ID_H__ | |
6 #define __ID_H__ | |
7 | |
8 #include <wx/wx.h> | |
9 | |
5 | 10 #define RSVER "1.0" |
11 #define RSRELEASE "2018.10.25" | |
12 | |
4 | 13 enum { |
14 ID_MAIN = wxID_HIGHEST + 1, | |
15 ID_SEARCH, | |
5 | 16 ID_PSEARCH, |
4 | 17 ID_LIST, |
18 ID_NBOOK, | |
19 ID_SLDR, | |
20 ID_TIMER, | |
21 ID_LOGOUT, | |
22 }; | |
23 | |
24 #endif // __ID_H__ | |
25 |