diff options
author | Günther Deschner <gd@samba.org> | 2004-10-04 22:13:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:53 -0500 |
commit | 2d016a67b87b5fee71fbdd33ea6b6fa78b0c8828 (patch) | |
tree | 0671c42259b67194536a8948c5090145f44bfdfa /source3/printing | |
parent | c5ccf8edaf28c2ee208252e43e69a7be168d8eb2 (diff) | |
download | samba-2d016a67b87b5fee71fbdd33ea6b6fa78b0c8828.tar.gz samba-2d016a67b87b5fee71fbdd33ea6b6fa78b0c8828.tar.bz2 samba-2d016a67b87b5fee71fbdd33ea6b6fa78b0c8828.zip |
r2821: Adding "Windows x64" as architecture string and driverdir "x64" for the
64bit AMD platform.
(This used to be "Windows AMD64" and "AMD64" in one of the release
candidates of SP2 for Windows XP. AMD64 is obviously still supported but
not documented.)
Guenther
(This used to be commit cc5892f0411b8eb5daebe746164a2cf21d3d4c68)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 993fab1419..81d792463a 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -210,6 +210,7 @@ struct table_node { #define SPL_ARCH_W32ALPHA "W32ALPHA" #define SPL_ARCH_W32PPC "W32PPC" #define SPL_ARCH_IA64 "IA64" +#define SPL_ARCH_X64 "x64" static const struct table_node archi_table[]= { @@ -219,6 +220,7 @@ static const struct table_node archi_table[]= { {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA, 2 }, {"Windows NT PowerPC", SPL_ARCH_W32PPC, 2 }, {"Windows IA64", SPL_ARCH_IA64, 3 }, + {"Windows x64", SPL_ARCH_X64, 3 }, {NULL, "", -1 } }; |