- Begun implementation of a C statements parser.
- More reorganizations and fixes.
diff --git a/tools/winapi/function.pm b/tools/winapi/function.pm
index be48873..2bd9b37 100644
--- a/tools/winapi/function.pm
+++ b/tools/winapi/function.pm
@@ -143,6 +143,17 @@
return $$argument_documentations;
}
+sub statements_line {
+ my $self = shift;
+ my $statements_line = \${$self->{STATEMENTS_LINE}};
+
+ local $_ = shift;
+
+ if(defined($_)) { $$statements_line = $_; }
+
+ return $$statements_line;
+}
+
sub statements {
my $self = shift;
my $statements = \${$self->{STATEMENTS}};