setupapi: The inf section suffix that corresponds to __x86_64 is .ntamd64.

This commit is contained in:
Hans Leidekker 2006-11-13 16:26:53 +01:00 committed by Alexandre Julliard
parent 1037e20bc7
commit 709735e294

View file

@ -995,7 +995,7 @@ void WINAPI InstallHinfSectionW( HWND hwnd, HINSTANCE handle, LPCWSTR cmdline, I
#ifdef __i386__
static const WCHAR nt_platformW[] = {'.','n','t','x','8','6',0};
#elif defined(__x86_64)
static const WCHAR nt_platformW[] = {'.','n','t','i','a','6','4',0};
static const WCHAR nt_platformW[] = {'.','n','t','a','m','d','6','4',0};
#else /* FIXME: other platforms */
static const WCHAR nt_platformW[] = {'.','n','t',0};
#endif