Get rid of W->A calls.

This commit is contained in:
Tony Lambregts 2003-03-24 19:28:13 +00:00 committed by Alexandre Julliard
parent 5aec52cccb
commit ec2664a92c
1 changed files with 2 additions and 2 deletions

View File

@ -258,12 +258,12 @@ LONG WINAPI ImmGetCompositionStringW(
HIMC hIMC, DWORD dwIndex,
LPVOID lpBuf, DWORD dwBufLen)
{
OSVERSIONINFOA version;
OSVERSIONINFOW version;
FIXME("(%p, %ld, %p, %ld): stub\n",
hIMC, dwIndex, lpBuf, dwBufLen
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
GetVersionExA( &version );
GetVersionExW( &version );
switch(version.dwPlatformId)
{
case VER_PLATFORM_WIN32_WINDOWS: return -1;