From f3a3a05ade784ff6906e5c8b132c9440a8db44e5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 16 May 2000 11:55:06 +0000 Subject: another awk parser update we can now handle arrays of structures, pointers to structures, pointers in unions etc (This used to be commit 1df80cd1e8475b6b2fe7b80b6c9089692ab7691b) --- source3/aparser/spool.struct | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'source3/aparser/spool.struct') diff --git a/source3/aparser/spool.struct b/source3/aparser/spool.struct index 52b0e3aed9..43f50ba1d6 100644 --- a/source3/aparser/spool.struct +++ b/source3/aparser/spool.struct @@ -1,16 +1,16 @@ module spool -test PRINTER_DRIVER_INFO_LEVEL_6 +test R_GETPRINTERDRIVER2 struct BUFFER5 { uint32 buf_len; - uint16 *buffer[buf_len]; + uint16 buffer[buf_len]; }; struct UNISTR2 { uint32 max_len; uint32 undoc; uint32 str_len; - uint16 *buffer[str_len]; + uint16 buffer[str_len]; }; struct UINT64_S { @@ -69,3 +69,13 @@ struct PRINTER_DRIVER_INFO { case 6 PRINTER_DRIVER_INFO_LEVEL_6 info_6; } }; + + +struct R_GETPRINTERDATA { + uint32 type; + uint32 size; + uint8 *data; + uint32 needed; + uint32 status; +}; + -- cgit