4 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform" version=
"1.0">
5 <xsl:output method=
"text" encoding=
"UTF-8"/>
7 <xsl:template match=
"text()"/>
9 <xsl:template match=
"/">
10 static hf_register_info hf_FIX[] = {
11 <xsl:apply-templates/>
20 * indent-tabs-mode: nil
23 * ex: set shiftwidth=
4 tabstop=
8 expandtab:
24 * :indentSize=
4:tabSize=
8:noTabs=true:
29 <xsl:template match=
"fields">
30 <xsl:for-each select=
"field">
31 <xsl:sort select=
"@number" data-type=
"number"/>
32 {
&fix_hf[
<xsl:value-of select=
"position( ) -1" />],
33 {
"<xsl:value-of select="@name
"/> (<xsl:value-of select="@number
"/>)",
"fix.<xsl:value-of select="@name
"/>",
34 FT_STRING, BASE_NONE, NULL,
0x00,
36 },
</xsl:for-each></xsl:template>