Commit 5531c3d2 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

wimgapi: Enable compilation with long types.

parent 48dc5189
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = wimgapi.dll
EXTRADLLFLAGS = -Wb,--prefer-native
......
......@@ -43,7 +43,7 @@ BOOL WINAPI WIMGetMountedImages(PWIM_MOUNT_LIST list, DWORD *length)
HANDLE WINAPI WIMCreateFile(WCHAR *path, DWORD access, DWORD creation, DWORD flags, DWORD compression, DWORD *result)
{
FIXME("(%s %d %d %d %d %p) stub\n", debugstr_w(path), access, creation, flags, compression, result);
FIXME("(%s %ld %ld %ld %ld %p) stub\n", debugstr_w(path), access, creation, flags, compression, result);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}
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