version: Add stubs for GetFileVersionInfoExA/W.
This commit is contained in:
parent
0029290e3e
commit
61fc9ac92f
|
@ -1,4 +1,4 @@
|
|||
@ stub GetFileVersionInfoExW
|
||||
@ stdcall GetFileVersionInfoExW(long wstr long long ptr) version.GetFileVersionInfoExW
|
||||
@ stdcall GetFileVersionInfoSizeExW(long wstr ptr) version.GetFileVersionInfoSizeExW
|
||||
@ stdcall VerFindFileA(long str str str ptr ptr ptr ptr) version.VerFindFileA
|
||||
@ stdcall VerFindFileW(long wstr wstr wstr ptr ptr ptr ptr) version.VerFindFileW
|
||||
|
|
|
@ -1633,3 +1633,23 @@ DWORD WINAPI GetFileVersionInfoSizeExW(DWORD flags, LPCWSTR filename, LPDWORD ha
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* GetFileVersionInfoExA [VERSION.@]
|
||||
*/
|
||||
BOOL WINAPI GetFileVersionInfoExA(DWORD flags, LPCSTR filename, DWORD handle, DWORD len, LPVOID data)
|
||||
{
|
||||
FIXME("stub: %u %s %u %u %p\n", flags, wine_dbgstr_a(filename), handle, len, data);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* GetFileVersionInfoExW [VERSION.@]
|
||||
*/
|
||||
BOOL WINAPI GetFileVersionInfoExW(DWORD flags, LPCWSTR filename, DWORD handle, DWORD len, LPVOID data)
|
||||
{
|
||||
FIXME("stub: %u %s %u %u %p\n", flags, wine_dbgstr_w(filename), handle, len, data);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
@ stdcall GetFileVersionInfoA(str long long ptr)
|
||||
@ stdcall GetFileVersionInfoExA(long str long long ptr)
|
||||
@ stdcall GetFileVersionInfoExW(long wstr long long ptr)
|
||||
@ stdcall GetFileVersionInfoSizeA(str ptr)
|
||||
@ stdcall GetFileVersionInfoSizeW(wstr ptr)
|
||||
@ stdcall GetFileVersionInfoSizeExA(long str ptr)
|
||||
@ stdcall GetFileVersionInfoSizeExW(long wstr ptr)
|
||||
@ stdcall GetFileVersionInfoSizeW(wstr ptr)
|
||||
@ stdcall GetFileVersionInfoW(wstr long long ptr)
|
||||
@ stdcall VerFindFileA(long str str str ptr ptr ptr ptr)
|
||||
@ stdcall VerFindFileW(long wstr wstr wstr ptr ptr ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue