summaryrefslogtreecommitdiff
path: root/src/dlls/mscorrc/rctopo.awk
blob: 5229585ff594a5ed47813147921aa6855b7c375b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Convert string resources from Windows native resource file to the 
# input format of the gettext toolchain.

# Write entry for a string resource
function writestringentry(id, str)
{
    idAsStr = sprintf("%X", id);
    print "msgid \""idAsStr"\"";
    print "msgstr" str;
    print "";
}

# Write file header
function writeheader()
{
}

# Write file footer
function writefooter()
{
}