user32/tests: Add ARM and ARM64 arch strings.

This commit is contained in:
André Hentschel 2015-08-09 14:04:03 +02:00 committed by Alexandre Julliard
parent 4b8df74447
commit 3c9b8d7028
1 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,10 @@
#define ARCH "x86"
#elif defined __x86_64__
#define ARCH "amd64"
#elif defined __arm__
#define ARCH "arm"
#elif defined __aarch64__
#define ARCH "arm64"
#else
#define ARCH "none"
#endif