Commit 15c519a1 authored by Alexandre Julliard's avatar Alexandre Julliard

Added GetProcessHeap definition in case it's not inlined.

parent c63d9803
...@@ -292,6 +292,11 @@ LONG WINAPI _hread( HFILE hFile, LPVOID buffer, LONG count ) ...@@ -292,6 +292,11 @@ LONG WINAPI _hread( HFILE hFile, LPVOID buffer, LONG count )
return fread(buffer, 1, count, file); return fread(buffer, 1, count, file);
} }
HANDLE WINAPI GetProcessHeap(void)
{
return 0;
}
void* WINAPI HeapAlloc( HANDLE heap, DWORD flags, DWORD size ) void* WINAPI HeapAlloc( HANDLE heap, DWORD flags, DWORD size )
{ {
assert(flags == 0); assert(flags == 0);
......
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