kernel32: Add stub for GetPackageFullName.

Signed-off-by: Michael Müller <michael@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Müller 2017-04-23 23:36:31 +02:00 committed by Alexandre Julliard
parent 62ae2ae1a1
commit 2b79436ab9
4 changed files with 12 additions and 2 deletions

View file

@ -10,7 +10,7 @@
@ stub GetCurrentPackagePath @ stub GetCurrentPackagePath
@ stub GetPackageApplicationIds @ stub GetPackageApplicationIds
@ stub GetPackageFamilyName @ stub GetPackageFamilyName
@ stub GetPackageFullName @ stdcall GetPackageFullName(long ptr ptr) kernel32.GetPackageFullName
@ stub GetPackageId @ stub GetPackageId
@ stub GetPackageInfo @ stub GetPackageInfo
@ stub GetPackagePath @ stub GetPackagePath

View file

@ -761,6 +761,7 @@
@ stdcall GetOEMCP() @ stdcall GetOEMCP()
@ stdcall GetOverlappedResult(long ptr ptr long) @ stdcall GetOverlappedResult(long ptr ptr long)
@ stdcall GetUserPreferredUILanguages(long ptr ptr ptr) @ stdcall GetUserPreferredUILanguages(long ptr ptr ptr)
@ stdcall GetPackageFullName(long ptr ptr)
@ stdcall GetPhysicallyInstalledSystemMemory(ptr) @ stdcall GetPhysicallyInstalledSystemMemory(ptr)
@ stdcall GetPriorityClass(long) @ stdcall GetPriorityClass(long)
@ stdcall GetPrivateProfileIntA(str str long str) @ stdcall GetPrivateProfileIntA(str str long str)

View file

@ -228,3 +228,12 @@ LONG WINAPI GetCurrentPackageFullName(UINT32 *length, PWSTR name)
FIXME("(%p %p): stub\n", length, name); FIXME("(%p %p): stub\n", length, name);
return APPMODEL_ERROR_NO_PACKAGE; return APPMODEL_ERROR_NO_PACKAGE;
} }
/***********************************************************************
* GetPackageFullName (KERNEL32.@)
*/
LONG WINAPI GetPackageFullName(HANDLE process, UINT32 *length, PWSTR name)
{
FIXME("(%p %p %p): stub\n", process, length, name);
return APPMODEL_ERROR_NO_PACKAGE;
}

View file

@ -593,7 +593,7 @@
# @ stub GetPackageContext # @ stub GetPackageContext
# @ stub GetPackageFamilyName # @ stub GetPackageFamilyName
# @ stub GetPackageFamilyNameFromToken # @ stub GetPackageFamilyNameFromToken
# @ stub GetPackageFullName @ stdcall GetPackageFullName(long ptr ptr) kernel32.GetPackageFullName
# @ stub GetPackageFullNameFromToken # @ stub GetPackageFullNameFromToken
# @ stub GetPackageId # @ stub GetPackageId
# @ stub GetPackageInfo # @ stub GetPackageInfo