pidl:dcerpc-*: regenerate dissectors after {NT,WERR,HRES}_errors_ext pidl changes
[wireshark-sm.git] / fix / hfField.xsl
bloba1edce22afc2b2dddcc46a7760f752356b96d5a4
1 <!--
2 -->
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/>
15 * Editor modelines
17 * Local Variables:
18 * c-basic-offset: 4
19 * tab-width: 8
20 * indent-tabs-mode: nil
21 * End:
23 * ex: set shiftwidth=4 tabstop=8 expandtab:
24 * :indentSize=4:tabSize=8:noTabs=true:
26 </xsl:template>
29 <xsl:template match="fields">
30 <xsl:for-each select="field">
31 <xsl:sort select="@number" data-type="number"/>
32 { &amp;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,
35 NULL, HFILL }
36 },</xsl:for-each></xsl:template>
37 </xsl:stylesheet>