Mercurial > mercurial > hgweb_golang.cgi
comparison src/kaigo/horori/searcher/sample.rc @ 45:20b42e2deae1
add alloc, (new)mover, merger & (new)searcher.
author | pyon@macmini |
---|---|
date | Thu, 16 Apr 2020 20:59:35 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
44:b50f2a581cf8 | 45:20b42e2deae1 |
---|---|
1 ///////////////////////////////////////////////////////////////////////////// | |
2 // Name: samples/samples.rc | |
3 // Purpose: a standard Win32 .rc file for the wxWindows samples | |
4 // Author: Vadim Zeitlin | |
5 // Modified by: | |
6 // Created: 04.08.03 | |
7 // RCS-ID: $Id: sample.rc 22863 2003-08-14 14:08:53Z VS $ | |
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org> | |
9 // Licence: wxWindows licence | |
10 ///////////////////////////////////////////////////////////////////////////// | |
11 | |
12 // this minimal resource file is all what is needed for most of the wxWindows | |
13 // samples | |
14 | |
15 // note that the icon used by the Explorer (i.e. the programs icon) is the | |
16 // first icon in the executable and the icons are sorted both by their order | |
17 // (Win9x) and by alphabetically (!) (NT), so put this icon first and give it | |
18 // a name starting with "a" | |
19 aaaaaaaa ICON "sample.ico" | |
20 | |
21 // this icon is used with wxFrame::SetIcon() | |
22 sample ICON "sample.ico" | |
23 | |
24 // set this to 1 if you don't want to use manifest resource (manifest resource | |
25 // is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt | |
26 // for more information) | |
27 #define wxUSE_NO_MANIFEST 0 | |
28 | |
29 // this is not always needed but doesn't hurt (except making the executable | |
30 // very slightly larger): this file contains the standard icons, cursors, ... | |
31 #include "wx/msw/wx.rc" | |
32 |