Commit 044baef5 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

wimgapi: Add WIMCreateFile stub.

parent dc0377aa
......@@ -58,3 +58,10 @@ BOOL WINAPI WIMGetMountedImages(PWIM_MOUNT_LIST list, DWORD *length)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
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);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}
......@@ -5,7 +5,7 @@
@ stub WIMCloseHandle
@ stub WIMCommitImageHandle
@ stub WIMCopyFile
@ stub WIMCreateFile
@ stdcall WIMCreateFile(wstr long long long long ptr)
@ stub WIMCreateImageFile
@ stub WIMDeleteImage
@ stub WIMDeleteImageMounts
......
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