aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pidl
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-01-13 21:18:29 +0000
committerGuy Harris <guy@alum.mit.edu>2014-01-13 21:18:29 +0000
commit833d315c0242b6b3f91e0fb46936c2893abf8f22 (patch)
tree4d9eb83c950216937ab264668929eb9ffb151594 /tools/pidl
parenta2979508d011e897f9867997711e4496b1905ac7 (diff)
Document {CODE,HEADER} {START,END}.
Clean up indentation. svn path=/trunk/; revision=54721
Diffstat (limited to 'tools/pidl')
-rw-r--r--tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm b/tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
index d2d99f0158..ee6dcb05da 100644
--- a/tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
+++ b/tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
@@ -89,6 +89,14 @@ to write a function manually. This can be used to remove the function
for only one level for a particular element rather than all the functions and
ett/hf variables for a particular element as the NOEMIT command does.
+=item I<CODE START>/I<CODE END>
+Begin and end a section of code to be put directly into the generated
+source file for the dissector.
+
+=item I<HEADER START>/I<HEADER END>
+Begin and end a section of code to be put directly into the generated
+header file for the dissector.
+
=back
=head1 EXAMPLE
@@ -284,7 +292,7 @@ sub handle_manual($$$)
return;
}
- $data->{manual}->{$fn} = 1;
+ $data->{manual}->{$fn} = 1;
}
sub handle_protocol($$$$$$)