Commit 5beaca8e authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

sppc: Enable compilation with long types.

parent 940297d6
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = sppc.dll MODULE = sppc.dll
EXTRADLLFLAGS = -Wb,--prefer-native EXTRADLLFLAGS = -Wb,--prefer-native
......
...@@ -60,7 +60,7 @@ HRESULT WINAPI SLClose(HSLC handle) ...@@ -60,7 +60,7 @@ HRESULT WINAPI SLClose(HSLC handle)
HRESULT WINAPI SLPersistApplicationPolicies(const SLID *app, const SLID *product, DWORD flags) HRESULT WINAPI SLPersistApplicationPolicies(const SLID *app, const SLID *product, DWORD flags)
{ {
FIXME("(%s,%s,%x) stub\n", wine_dbgstr_guid(app), wine_dbgstr_guid(product), flags); FIXME("(%s,%s,%lx) stub\n", wine_dbgstr_guid(app), wine_dbgstr_guid(product), flags);
if (!app) if (!app)
return E_INVALIDARG; return E_INVALIDARG;
......
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