Skip to content
Snippets Groups Projects

sppc: Add stub SLInstallLicense().

Open Vijay Kiran Kamuju requested to merge infyquest/wine-iq-devel:slinstall into master
1 unresolved thread
3 files
+ 12
1
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 10
0
@@ -39,6 +39,16 @@ HRESULT WINAPI SLGetLicensingStatusInformation(HSLC handle, const SLID *app, con
return SL_E_RIGHT_NOT_CONSUMED;
}
HRESULT WINAPI SLInstallLicense(HSLC handle, UINT size, const BYTE *license, SLID *fileid)
{
FIXME("(%p %u %p %p) stub\n", handle, size, license, fileid );
if (!handle)
return E_INVALIDARG;
return S_OK;
}
HRESULT WINAPI SLOpen(HSLC *handle)
{
FIXME("(%p) stub\n", handle );
Loading