1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-10 12:58:35 +03:00

spoolss: Fix PROCESSOR_AMD_X8664 value in IDL

Microsoft got their docs wrong in MS-RPRN Section 2.2.1.10.1 (footnote
65): PROCESSOR_AMD_X8664 must be 0x000021D8 and not 0x000022A0.

This is what recent windows versions report back from a spoolss
getprinter level 0 RPC call.

Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Günther Deschner 2017-01-04 16:08:59 +01:00 committed by Stefan Metzmacher
parent d6a9377b6d
commit 0e7302dd10

View File

@ -42,11 +42,11 @@ cpp_quote("#define spoolss_security_descriptor security_descriptor")
typedef [v1_enum] enum {
PROCESSOR_ARM = 0x00000000,
PROCESSOR_INTEL_386 = 0x00000182,
PROCESSOR_INTEL_486 = 0x000001E6,
PROCESSOR_INTEL_PENTIUM = 0x0000024A,
PROCESSOR_INTEL_IA64 = 0x00000898,
PROCESSOR_AMD_X8664 = 0x000022A0
PROCESSOR_INTEL_386 = 0x00000182, /* 386 */
PROCESSOR_INTEL_486 = 0x000001E6, /* 486 */
PROCESSOR_INTEL_PENTIUM = 0x0000024A, /* 586 */
PROCESSOR_INTEL_IA64 = 0x00000898, /* 2200 */
PROCESSOR_AMD_X8664 = 0x000021D8 /* 8664 */
} spoolss_ProcessorType;
typedef [v1_enum] enum {