This is an automated email from the git hooks/post-receive script. mgilbert pushed a commit to branch master in repository wine.
commit 044baef529070818f9bfab434d6b5467a189dca5 Author: Austin English <[email protected]> Date: Thu Mar 24 15:27:01 2016 -0500 wimgapi: Add WIMCreateFile stub. Signed-off-by: Austin English <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> --- dlls/wimgapi/main.c | 7 +++++++ dlls/wimgapi/wimgapi.spec | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/dlls/wimgapi/main.c b/dlls/wimgapi/main.c index a7321fa..72437ee 100644 --- a/dlls/wimgapi/main.c +++ b/dlls/wimgapi/main.c @@ -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; +} diff --git a/dlls/wimgapi/wimgapi.spec b/dlls/wimgapi/wimgapi.spec index bb79d5b..17380a7 100644 --- a/dlls/wimgapi/wimgapi.spec +++ b/dlls/wimgapi/wimgapi.spec @@ -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 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git _______________________________________________ pkg-wine-party mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-wine-party
