diff options
author | Günther Deschner <gd@samba.org> | 2009-05-12 14:15:01 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-05-13 15:27:06 +0200 |
commit | 652251701df7dec1401eab9b1dbc7e3ac5c7e7ad (patch) | |
tree | 1435c61e9eff5d1f6a52d1b9a57a1098ef221e4c /source3/include | |
parent | 077327a923841338cf24162a67465c70fa3c4613 (diff) | |
download | samba-652251701df7dec1401eab9b1dbc7e3ac5c7e7ad.tar.gz samba-652251701df7dec1401eab9b1dbc7e3ac5c7e7ad.tar.bz2 samba-652251701df7dec1401eab9b1dbc7e3ac5c7e7ad.zip |
s3-printing: no need to define struct table_node 4 times.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/nt_printing.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/include/nt_printing.h b/source3/include/nt_printing.h index a25d984eb2..09878f9ec4 100644 --- a/source3/include/nt_printing.h +++ b/source3/include/nt_printing.h @@ -475,4 +475,10 @@ typedef struct _Printer{ #define DRIVER_ANY_VERSION 0xffffffff #define DRIVER_MAX_VERSION 4 +struct print_architecture_table_node { + const char *long_archi; + const char *short_archi; + int version; +}; + #endif /* NT_PRINTING_H_ */ |