Commit bfe61026 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

nddeapi: Win64 printf format warning fixes.

parent 4a4c025a
...@@ -5,7 +5,6 @@ VPATH = @srcdir@ ...@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE = nddeapi.dll MODULE = nddeapi.dll
IMPORTLIB = libnddeapi.$(IMPLIBEXT) IMPORTLIB = libnddeapi.$(IMPLIBEXT)
IMPORTS = kernel32 IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \ C_SRCS = \
nddeapi.c nddeapi.c
......
...@@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(nddeapi); ...@@ -32,7 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(nddeapi);
*/ */
UINT WINAPI NDdeGetErrorStringA(UINT uErrorCode, LPSTR lpszErrorString, DWORD cBufSize) 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; return E_NOTIMPL;
} }
...@@ -43,7 +43,7 @@ UINT WINAPI NDdeGetErrorStringA(UINT uErrorCode, LPSTR lpszErrorString, DWORD cB ...@@ -43,7 +43,7 @@ UINT WINAPI NDdeGetErrorStringA(UINT uErrorCode, LPSTR lpszErrorString, DWORD cB
*/ */
UINT WINAPI NDdeGetErrorStringW(UINT uErrorCode, LPWSTR lpszErrorString, DWORD cBufSize) 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; return E_NOTIMPL;
} }
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