setupapi: Define .inf section names for ARM platforms.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
79aaabeb7f
commit
b2b3975f46
|
@ -1212,6 +1212,10 @@ void WINAPI InstallHinfSectionW( HWND hwnd, HINSTANCE handle, LPCWSTR cmdline, I
|
|||
static const WCHAR nt_platformW[] = {'.','n','t','x','8','6',0};
|
||||
#elif defined(__x86_64__)
|
||||
static const WCHAR nt_platformW[] = {'.','n','t','a','m','d','6','4',0};
|
||||
#elif defined(__arm__)
|
||||
static const WCHAR nt_platformW[] = {'.','n','t','a','r','m',0};
|
||||
#elif defined(__aarch64__)
|
||||
static const WCHAR nt_platformW[] = {'.','n','t','a','r','m','6','4',0};
|
||||
#else /* FIXME: other platforms */
|
||||
static const WCHAR nt_platformW[] = {'.','n','t',0};
|
||||
#endif
|
||||
|
|
|
@ -43,6 +43,16 @@ static const WCHAR source_disks_names_platform[] =
|
|||
{'S','o','u','r','c','e','D','i','s','k','s','N','a','m','e','s','.','a','m','d','6','4',0};
|
||||
static const WCHAR source_disks_files_platform[] =
|
||||
{'S','o','u','r','c','e','D','i','s','k','s','F','i','l','e','s','.','a','m','d','6','4',0};
|
||||
#elif defined(__arm__)
|
||||
static const WCHAR source_disks_names_platform[] =
|
||||
{'S','o','u','r','c','e','D','i','s','k','s','N','a','m','e','s','.','a','r','m',0};
|
||||
static const WCHAR source_disks_files_platform[] =
|
||||
{'S','o','u','r','c','e','D','i','s','k','s','F','i','l','e','s','.','a','r','m',0};
|
||||
#elif defined(__aarch64__)
|
||||
static const WCHAR source_disks_names_platform[] =
|
||||
{'S','o','u','r','c','e','D','i','s','k','s','N','a','m','e','s','.','a','r','m','6','4',0};
|
||||
static const WCHAR source_disks_files_platform[] =
|
||||
{'S','o','u','r','c','e','D','i','s','k','s','F','i','l','e','s','.','a','r','m','6','4',0};
|
||||
#else /* FIXME: other platforms */
|
||||
static const WCHAR source_disks_names_platform[] =
|
||||
{'S','o','u','r','c','e','D','i','s','k','s','N','a','m','e','s',0};
|
||||
|
|
Loading…
Reference in New Issue