Skip to content
Snippets Groups Projects
Commit 4de47f18 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard
Browse files
parent 5b16fb96
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,13 @@ HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwVa
return status ? E_FAIL : S_OK;
}
HRESULT WINAPI SLOpen(HSLC *handle)
{
FIXME("(%p) stub\n", handle );
return S_OK;
}
/***********************************************************************
* DllMain (CLUSAPI.@)
*
......
......@@ -30,7 +30,7 @@
@ stub SLInstallLicense
@ stub SLInstallProofOfPurchase
@ stub SLInstallSAMLicense
@ stub SLOpen
@ stdcall SLOpen(ptr)
@ stub SLReArmWindows
@ stub SLRegisterEvent
@ stub SLRegisterWindowsEvent
......
......@@ -29,6 +29,8 @@ extern "C" {
#define SLCAPI DECLSPEC_IMPORT
#endif
typedef PVOID HSLC;
typedef enum _tagSLDATATYPE
{
SL_DATA_NONE = REG_NONE,
......@@ -41,7 +43,7 @@ typedef enum _tagSLDATATYPE
SLCAPI HRESULT WINAPI SLGetWindowsInformation(LPCWSTR, SLDATATYPE*, UINT*, LPBYTE*);
SLCAPI HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR, LPDWORD);
SLCAPI HRESULT WINAPI SLOpen(HSLC*);
#ifdef __cplusplus
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment