wimgapi: Add WIMCreateFile stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
dc0377aaba
commit
044baef529
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue