This is an automated email from the git hooks/post-receive script. mgilbert pushed a commit to branch master in repository wine.
commit e3389112dfcadf88cce070452d1d114f64aebf8b Author: Austin English <[email protected]> Date: Fri Dec 4 02:59:30 2015 -0500 fusion: Add a stub for CopyPDBs. Signed-off-by: Austin English <[email protected]> Signed-off-by: Sebastian Lackner <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> --- dlls/fusion/fusion.c | 9 +++++++++ dlls/fusion/fusion.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dlls/fusion/fusion.c b/dlls/fusion/fusion.c index 6c0bc00..f9d57d1 100644 --- a/dlls/fusion/fusion.c +++ b/dlls/fusion/fusion.c @@ -52,6 +52,15 @@ HRESULT WINAPI ClearDownloadCache(void) } /****************************************************************** + * CopyPDBs (FUSION.@) + */ +HRESULT WINAPI CopyPDBs(void *unknown) +{ + FIXME("(%p) stub!\n", unknown); + return E_NOTIMPL; +} + +/****************************************************************** * CreateInstallReferenceEnum (FUSION.@) */ HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum, diff --git a/dlls/fusion/fusion.spec b/dlls/fusion/fusion.spec index 264aff7..f3a8950 100644 --- a/dlls/fusion/fusion.spec +++ b/dlls/fusion/fusion.spec @@ -1,4 +1,4 @@ -@ stub CopyPDBs +@ stdcall CopyPDBs(ptr) @ stdcall ClearDownloadCache() @ stdcall CreateApplicationContext(ptr ptr) @ stdcall CreateAssemblyCache(ptr long) -- 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
