Switch source build property to DotNetBuildFromSource
[platform/upstream/coreclr.git] / src / nativeresources / rctopo.awk
1 # Convert string resources from Windows native resource file to the 
2 # input format of the gettext toolchain.
3
4 # Write entry for a string resource
5 function writestringentry(id, str)
6 {
7     idAsStr = sprintf("%X", id);
8     print "msgid \""idAsStr"\"";
9     print "msgstr" str;
10     print "";
11 }
12
13 # Write file header
14 function writeheader()
15 {
16 }
17
18 # Write file footer
19 function writefooter()
20 {
21 }