Commit 7dca3d13 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Implement GetLargePageMinimum for arm.

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