Commit b2b3975f authored by Alexandre Julliard's avatar Alexandre Julliard

setupapi: Define .inf section names for ARM platforms.

parent 79aaabeb
...@@ -1212,6 +1212,10 @@ void WINAPI InstallHinfSectionW( HWND hwnd, HINSTANCE handle, LPCWSTR cmdline, I ...@@ -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}; static const WCHAR nt_platformW[] = {'.','n','t','x','8','6',0};
#elif defined(__x86_64__) #elif defined(__x86_64__)
static const WCHAR nt_platformW[] = {'.','n','t','a','m','d','6','4',0}; 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 */ #else /* FIXME: other platforms */
static const WCHAR nt_platformW[] = {'.','n','t',0}; static const WCHAR nt_platformW[] = {'.','n','t',0};
#endif #endif
......
...@@ -43,6 +43,16 @@ static const WCHAR source_disks_names_platform[] = ...@@ -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}; {'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[] = 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}; {'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 */ #else /* FIXME: other platforms */
static const WCHAR source_disks_names_platform[] = static const WCHAR source_disks_names_platform[] =
{'S','o','u','r','c','e','D','i','s','k','s','N','a','m','e','s',0}; {'S','o','u','r','c','e','D','i','s','k','s','N','a','m','e','s',0};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment