Windres problem with Boling book example
Danny Backx
danny.backx@scarlet.be
Thu Nov 23 19:16:00 GMT 2006
Hi,
One of the examples in the Boling book has lines in the resource file
that look like this :
aboutbox DIALOG discardable 10, 10, 132, 40
[The "Boling book" is Programming Microsoft Windows CE .net, third
edition, by Douglas Boling.]
The problem is that binutils's windres appears to expect all the
keywords such as DISCARABLE to be in upper case.
A trivial fix for src/binutils/binutils/rclex.l is below. Obviously this
fixes only that keyword, I'd expect all of them need to be treated in
the same way.
This looks pretty lame, there must be a reason why this isn't
implemented like this to begin with. Does anyone see a reason ?
Thanks,
Danny
dannypc: {75} svn diff rclex.l
Index: rclex.l
===================================================================
--- rclex.l (revision 819)
+++ rclex.l (working copy)
@@ -151,7 +151,7 @@
"IMPURE" { MAYBE_RETURN (IMPURE); }
"PRELOAD" { MAYBE_RETURN (PRELOAD); }
"LOADONCALL" { MAYBE_RETURN (LOADONCALL); }
-"DISCARDABLE" { MAYBE_RETURN (DISCARDABLE); }
+[dD][iI][sS][cC][aA][rR][dD][aA][bB][lL][eE] { MAYBE_RETURN
(DISCARDABLE); }
"NOT" { MAYBE_RETURN (NOT); }
"BLOCK"[ \t\n]*"\""[^\#\n]*"\"" {
--
Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 191 bytes
Desc: This is a digitally signed message part
URL: <https://sourceware.org/pipermail/binutils/attachments/20061123/e2de8ae8/attachment.sig>
More information about the Binutils
mailing list