difxapi: 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-09 09:26:58 +01:00 committed by Alexandre Julliard
parent ec0645c983
commit 1c9a0679a9
2 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = difxapi.dll
C_SRCS = \

View File

@ -27,40 +27,40 @@ WINE_DEFAULT_DEBUG_CHANNEL(difxapi);
DWORD WINAPI DriverPackagePreinstallA(LPCSTR inf, DWORD flags)
{
FIXME("(%s, %u) stub\n", wine_dbgstr_a(inf), flags);
FIXME("(%s, %lu) stub\n", wine_dbgstr_a(inf), flags);
return ERROR_SUCCESS;
}
DWORD WINAPI DriverPackagePreinstallW(LPCWSTR inf, DWORD flags)
{
FIXME("(%s, %u) stub\n", wine_dbgstr_w(inf), flags);
FIXME("(%s, %lu) stub\n", wine_dbgstr_w(inf), flags);
return ERROR_SUCCESS;
}
DWORD WINAPI DriverPackageInstallA(LPCSTR inf, DWORD flags, PCINSTALLERINFO_A info, BOOL *reboot)
{
FIXME("(%s, %u, %p, %p) stub\n", wine_dbgstr_a(inf), flags, info, reboot);
FIXME("(%s, %lu, %p, %p) stub\n", wine_dbgstr_a(inf), flags, info, reboot);
if (reboot) *reboot = FALSE;
return ERROR_SUCCESS;
}
DWORD WINAPI DriverPackageInstallW(LPCWSTR inf, DWORD flags, PCINSTALLERINFO_W info, BOOL *reboot)
{
FIXME("(%s, %u, %p, %p) stub\n", wine_dbgstr_w(inf), flags, info, reboot);
FIXME("(%s, %lu, %p, %p) stub\n", wine_dbgstr_w(inf), flags, info, reboot);
if (reboot) *reboot = FALSE;
return ERROR_SUCCESS;
}
DWORD WINAPI DriverPackageUninstallA(LPCSTR inf, DWORD flags, PCINSTALLERINFO_A info, BOOL *reboot)
{
FIXME("(%s, %u, %p, %p) stub\n", wine_dbgstr_a(inf), flags, info, reboot);
FIXME("(%s, %lu, %p, %p) stub\n", wine_dbgstr_a(inf), flags, info, reboot);
if (reboot) *reboot = FALSE;
return ERROR_SUCCESS;
}
DWORD WINAPI DriverPackageUninstallW(LPCWSTR inf, DWORD flags, PCINSTALLERINFO_W info, BOOL *reboot)
{
FIXME("(%s, %u, %p, %p) stub\n", wine_dbgstr_w(inf), flags, info, reboot);
FIXME("(%s, %lu, %p, %p) stub\n", wine_dbgstr_w(inf), flags, info, reboot);
if (reboot) *reboot = FALSE;
return ERROR_SUCCESS;
}