Skip to content
Snippets Groups Projects
Commit a31c1451 authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju
Browse files

sppc: Add stub SLInstallLicense().

parent 3a736901
Branches
No related tags found
1 merge request!5522sppc: Add stub SLInstallLicense().
......@@ -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 );
......
......@@ -46,7 +46,7 @@
@ stub SLGetProductSkuInformation
@ stub SLGetSLIDList
@ stub SLGetServiceInformation
@ stub SLInstallLicense
@ stdcall SLInstallLicense(ptr long ptr ptr)
@ stub SLInstallProofOfPurchase
@ stub SLInstallProofOfPurchaseEx
@ stub SLIsGenuineLocalEx
......
......@@ -65,6 +65,7 @@ typedef struct _tagSL_LICENSING_STATUS
SLCAPI HRESULT WINAPI SLGetLicensingStatusInformation(HSLC, const SLID*, const SLID*, LPCWSTR, UINT*, SL_LICENSING_STATUS**);
SLCAPI HRESULT WINAPI SLGetWindowsInformation(LPCWSTR, SLDATATYPE*, UINT*, LPBYTE*);
SLCAPI HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR, LPDWORD);
SLCAPI HRESULT WINAPI SLInstallLicense(HSLC,UINT,const BYTE *,SLID*);
SLCAPI HRESULT WINAPI SLOpen(HSLC*);
#ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment