Files
puzzles/puzzles.rc
Simon Tatham 19aa3a5d4b Remove leftover Windows CE cruft.
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.
2021-05-21 09:10:53 +01:00

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