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:
Austin English 2016-03-24 15:27:01 -05:00 committed by Alexandre Julliard
parent dc0377aaba
commit 044baef529
2 changed files with 8 additions and 1 deletions

View file

@ -58,3 +58,10 @@ BOOL WINAPI WIMGetMountedImages(PWIM_MOUNT_LIST list, DWORD *length)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0; 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;
}

View file

@ -5,7 +5,7 @@
@ stub WIMCloseHandle @ stub WIMCloseHandle
@ stub WIMCommitImageHandle @ stub WIMCommitImageHandle
@ stub WIMCopyFile @ stub WIMCopyFile
@ stub WIMCreateFile @ stdcall WIMCreateFile(wstr long long long long ptr)
@ stub WIMCreateImageFile @ stub WIMCreateImageFile
@ stub WIMDeleteImage @ stub WIMDeleteImage
@ stub WIMDeleteImageMounts @ stub WIMDeleteImageMounts