mprapi: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-14 09:28:26 +01:00 committed by Alexandre Julliard
parent 2303b77a49
commit e0f64ccd5d
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = mprapi.dll
IMPORTLIB = mprapi

View File

@ -45,7 +45,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mprapi);
*/
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;
return ERROR_MR_MID_NOT_FOUND;