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

AmpFactorToDB and DBToAmpFactor.
This commit is contained in:
Vincent Béron 2004-10-08 21:01:44 +00:00 committed by Alexandre Julliard
parent b9e2bedac1
commit 157b32c0f1
2 changed files with 4 additions and 4 deletions

View File

@ -1436,7 +1436,7 @@ UINT WINAPI GetSystemDirectoryA( LPSTR path, UINT count )
* - On Win32 we should returns ERROR_CALL_NOT_IMPLEMENTED * - On Win32 we should returns ERROR_CALL_NOT_IMPLEMENTED
* - On Win64 we should returns the SysWow64 (system64) directory * - 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 ); SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return 0; return 0;
@ -1448,7 +1448,7 @@ UINT GetSystemWow64DirectoryW( LPWSTR lpBuffer, UINT uSize )
* *
* See comment for GetWindowsWow64DirectoryW. * See comment for GetWindowsWow64DirectoryW.
*/ */
UINT GetSystemWow64DirectoryA( LPSTR lpBuffer, UINT uSize ) UINT WINAPI GetSystemWow64DirectoryA( LPSTR lpBuffer, UINT uSize )
{ {
SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return 0; return 0;

View File

@ -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); FIXME("(%ld) Stub!\n", ampfactor);
return 0; return 0;
} }
LONG DBToAmpFactor(LONG db) LONG WINAPI DBToAmpFactor(LONG db)
{ {
FIXME("(%ld) Stub!\n", db); FIXME("(%ld) Stub!\n", db);
/* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */ /* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */