Commit 157b32c0 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Correct the calling convention of GetSystemWow64Directory{A,W},

AmpFactorToDB and DBToAmpFactor.
parent b9e2beda
......@@ -1436,7 +1436,7 @@ UINT WINAPI GetSystemDirectoryA( LPSTR path, UINT count )
* - On Win32 we should returns ERROR_CALL_NOT_IMPLEMENTED
* - On Win64 we should returns the SysWow64 (system64) directory
*/
UINT GetSystemWow64DirectoryW( LPWSTR lpBuffer, UINT uSize )
UINT WINAPI GetSystemWow64DirectoryW( LPWSTR lpBuffer, UINT uSize )
{
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return 0;
......@@ -1448,7 +1448,7 @@ UINT GetSystemWow64DirectoryW( LPWSTR lpBuffer, UINT uSize )
*
* See comment for GetWindowsWow64DirectoryW.
*/
UINT GetSystemWow64DirectoryA( LPSTR lpBuffer, UINT uSize )
UINT WINAPI GetSystemWow64DirectoryA( LPSTR lpBuffer, UINT uSize )
{
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return 0;
......
......@@ -250,13 +250,13 @@ const char * qzdebugstr_State(FILTER_STATE state)
}
}
LONG AmpFactorToDB(LONG ampfactor)
LONG WINAPI AmpFactorToDB(LONG ampfactor)
{
FIXME("(%ld) Stub!\n", ampfactor);
return 0;
}
LONG DBToAmpFactor(LONG db)
LONG WINAPI DBToAmpFactor(LONG db)
{
FIXME("(%ld) Stub!\n", db);
/* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment