Commit 4de47f18 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard
parent 5b16fb96
...@@ -62,6 +62,13 @@ HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwVa ...@@ -62,6 +62,13 @@ HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwVa
return status ? E_FAIL : S_OK; return status ? E_FAIL : S_OK;
} }
HRESULT WINAPI SLOpen(HSLC *handle)
{
FIXME("(%p) stub\n", handle );
return S_OK;
}
/*********************************************************************** /***********************************************************************
* DllMain (CLUSAPI.@) * DllMain (CLUSAPI.@)
* *
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
@ stub SLInstallLicense @ stub SLInstallLicense
@ stub SLInstallProofOfPurchase @ stub SLInstallProofOfPurchase
@ stub SLInstallSAMLicense @ stub SLInstallSAMLicense
@ stub SLOpen @ stdcall SLOpen(ptr)
@ stub SLReArmWindows @ stub SLReArmWindows
@ stub SLRegisterEvent @ stub SLRegisterEvent
@ stub SLRegisterWindowsEvent @ stub SLRegisterWindowsEvent
......
...@@ -29,6 +29,8 @@ extern "C" { ...@@ -29,6 +29,8 @@ extern "C" {
#define SLCAPI DECLSPEC_IMPORT #define SLCAPI DECLSPEC_IMPORT
#endif #endif
typedef PVOID HSLC;
typedef enum _tagSLDATATYPE typedef enum _tagSLDATATYPE
{ {
SL_DATA_NONE = REG_NONE, SL_DATA_NONE = REG_NONE,
...@@ -41,7 +43,7 @@ typedef enum _tagSLDATATYPE ...@@ -41,7 +43,7 @@ typedef enum _tagSLDATATYPE
SLCAPI HRESULT WINAPI SLGetWindowsInformation(LPCWSTR, SLDATATYPE*, UINT*, LPBYTE*); SLCAPI HRESULT WINAPI SLGetWindowsInformation(LPCWSTR, SLDATATYPE*, UINT*, LPBYTE*);
SLCAPI HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR, LPDWORD); SLCAPI HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR, LPDWORD);
SLCAPI HRESULT WINAPI SLOpen(HSLC*);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
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