mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
setupapi: Use correct architecture for fake dlls on ARM and ARM64.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
05fad4b751
commit
35719665d7
1 changed files with 4 additions and 0 deletions
|
@ -713,6 +713,10 @@ static BOOL CALLBACK register_manifest( HMODULE module, const WCHAR *type, WCHAR
|
||||||
static const char current_arch[] = "x86";
|
static const char current_arch[] = "x86";
|
||||||
#elif defined __x86_64__
|
#elif defined __x86_64__
|
||||||
static const char current_arch[] = "amd64";
|
static const char current_arch[] = "amd64";
|
||||||
|
#elif defined __arm__
|
||||||
|
static const char current_arch[] = "arm";
|
||||||
|
#elif defined __aarch64__
|
||||||
|
static const char current_arch[] = "arm64";
|
||||||
#else
|
#else
|
||||||
static const char current_arch[] = "none";
|
static const char current_arch[] = "none";
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue