slc: Add SLOpen stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46156 Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5b16fb9689
commit
4de47f180f
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue