I have a .rc file with the following entry:
01111 my_res { "string 1" }
01113 my_res { "string 2" }
01119 my_res { "string 3" }
When I compile this .rc file with rc.exe, the resource entry id become 1111
, 1113
and 1119
respectively.
Apparently, the resource compiler treated the ID as numerics.
My first impression was the .res
files can't store numeric as string type. But when use a resource editor (e.g.: XNResourceEditor.exe
to change the resource ID 1111
to 01111
and it stored as 01111
. This shows that the resource id may store numeric as string type.
Is there a way to compile numeric resource id as string type?