Commit 9498ada7 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

kernel32: Fix types for the FreeBSD implementation of GlobalMemoryStatusEx().

parent d328c07b
...@@ -1206,7 +1206,8 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex ) ...@@ -1206,7 +1206,8 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
FILE *f; FILE *f;
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
unsigned long val; unsigned long val;
int size_sys, mib[2]; int mib[2];
size_t size_sys;
#elif defined(__APPLE__) #elif defined(__APPLE__)
unsigned int val; unsigned int val;
int mib[2]; int mib[2];
......
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