summaryrefslogtreecommitdiff
path: root/source3/aparser/parser.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-15 09:56:30 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-15 09:56:30 +0000
commita36a146573171c9f42ebf48febceb3599f7f8fdc (patch)
treec40b08fc7b75b8700490ea5fd20f698ad8ea9962 /source3/aparser/parser.h
parent378ec58bebdbc2ae7c7306fc25f358a58478ecf8 (diff)
downloadsamba-a36a146573171c9f42ebf48febceb3599f7f8fdc.tar.gz
samba-a36a146573171c9f42ebf48febceb3599f7f8fdc.tar.bz2
samba-a36a146573171c9f42ebf48febceb3599f7f8fdc.zip
added grow_size to prs structure
(This used to be commit d8c988694cbcd037c43480a623c2fbc37f2df7de)
Diffstat (limited to 'source3/aparser/parser.h')
-rw-r--r--source3/aparser/parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/aparser/parser.h b/source3/aparser/parser.h
index 843d0c7a11..353a879cb7 100644
--- a/source3/aparser/parser.h
+++ b/source3/aparser/parser.h
@@ -48,6 +48,7 @@ typedef struct _prs_struct
BOOL is_dynamic; /* Do we own this memory or not ? */
uint32 data_offset; /* Current working offset into data. */
uint32 buffer_size; /* Current size of the buffer. */
+ uint32 grow_size; /* size requested via prs_grow() calls */
char *data_p; /* The buffer itself. */
} prs_struct;