kernel32: Implement GetLargePageMinimum for arm.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2016-06-17 03:46:34 -05:00 committed by Alexandre Julliard
parent ef3494c623
commit 7dca3d139c
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ err:
*/
SIZE_T WINAPI GetLargePageMinimum(void)
{
#if defined(__i386___) || defined(__x86_64__)
#if defined(__i386___) || defined(__x86_64__) || defined(__arm__)
return 2 * 1024 * 1024;
#endif
FIXME("Not implemented on your platform/architecture.\n");