mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Files

Thanks to Kaz Kylheku for pointing out that commit ff3e762fd007883 didn't do a complete job: I removed the code under '#ifdef _WIN32_WCE' in windows.c, but missed sections under the same ifdef in puzzles.h and puzzles.rc, together with an entire header file resource.h that was only included by code under those ifdefs.
13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
/* Windows resource file for all puzzles. */
|
|
|
|
#if defined ICON_FILE
|
|
200 ICON ICON_FILE
|
|
#else
|
|
#ifdef MINGW32_FIX
|
|
/* XXX The MinGW toolchain (specifically, windres) doesn't like a resource
|
|
* file with no resources. Give it a dummy one.
|
|
* This can go if/when VERSIONINFO resources are added. */
|
|
200 RCDATA { 0 }
|
|
#endif
|
|
#endif
|