Mercurial > mercurial > hgweb_rsearcher.cgi
annotate include/id.h @ 6:9a8b581c1993
improve performance.
author | pyon@macmini |
---|---|
date | Tue, 23 Oct 2018 19:15:22 +0900 |
parents | e3b10fb860b3 |
children | 29829e98d510 |
rev | line source |
---|---|
4 | 1 // Filename : id.h |
6 | 2 // Last Change: 2018-10-23 ‰Î 12:36:12. |
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, | |
6 | 20 ID_PZOOM, |
21 ID_MZOOM, | |
22 ID_DARK, | |
4 | 23 ID_TIMER, |
24 ID_LOGOUT, | |
25 }; | |
26 | |
27 #endif // __ID_H__ | |
28 |