nddeapi: Win64 printf format warning fixes.

oldstable
Michael Stefaniuc 2006-10-03 23:39:44 +02:00 committed by Alexandre Julliard
parent 4a4c025a52
commit bfe610264d
2 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE = nddeapi.dll
IMPORTLIB = libnddeapi.$(IMPLIBEXT)
IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \
nddeapi.c

View File

@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(nddeapi);
*/
UINT WINAPI NDdeGetErrorStringA(UINT uErrorCode, LPSTR lpszErrorString, DWORD cBufSize)
{
FIXME("(%u, %s, %ld): stub!\n",uErrorCode,debugstr_a(lpszErrorString), cBufSize);
FIXME("(%u, %s, %d): stub!\n",uErrorCode,debugstr_a(lpszErrorString), cBufSize);
return E_NOTIMPL;
}
@ -43,7 +43,7 @@ UINT WINAPI NDdeGetErrorStringA(UINT uErrorCode, LPSTR lpszErrorString, DWORD cB
*/
UINT WINAPI NDdeGetErrorStringW(UINT uErrorCode, LPWSTR lpszErrorString, DWORD cBufSize)
{
FIXME("(%u, %s, %ld): stub!\n",uErrorCode,debugstr_w(lpszErrorString), cBufSize);
FIXME("(%u, %s, %d): stub!\n",uErrorCode,debugstr_w(lpszErrorString), cBufSize);
return E_NOTIMPL;
}