Commit e0f64ccd authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

mprapi: Enable compilation with long types.

parent 2303b77a
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = mprapi.dll MODULE = mprapi.dll
IMPORTLIB = mprapi IMPORTLIB = mprapi
......
...@@ -45,7 +45,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mprapi); ...@@ -45,7 +45,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mprapi);
*/ */
DWORD APIENTRY MprAdminGetErrorString(DWORD mprerror, LPWSTR *localstr) DWORD APIENTRY MprAdminGetErrorString(DWORD mprerror, LPWSTR *localstr)
{ {
FIXME("(0x%x/%u, %p): stub!\n", mprerror, mprerror, localstr); FIXME("(0x%lx/%lu, %p): stub!\n", mprerror, mprerror, localstr);
*localstr = NULL; *localstr = NULL;
return ERROR_MR_MID_NOT_FOUND; return ERROR_MR_MID_NOT_FOUND;
......
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