Skip to content
Snippets Groups Projects
Commit 15c519a1 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Added GetProcessHeap definition in case it's not inlined.

parent c63d9803
No related branches found
No related tags found
No related merge requests found
......@@ -292,6 +292,11 @@ LONG WINAPI _hread( HFILE hFile, LPVOID buffer, LONG count )
return fread(buffer, 1, count, file);
}
HANDLE WINAPI GetProcessHeap(void)
{
return 0;
}
void* WINAPI HeapAlloc( HANDLE heap, DWORD flags, DWORD size )
{
assert(flags == 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment