Commit e97746a5 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

slc: Add stub for SLGetWindowsInformation.

parent f272c126
......@@ -28,7 +28,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(slc);
DWORD WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwValue)
HRESULT WINAPI SLGetWindowsInformation(LPCWSTR name, SLDATATYPE *type, UINT *val, LPBYTE *size)
{
FIXME("(%s %p %p %p) stub\n", debugstr_w(name), type, val, size );
return SL_E_RIGHT_NOT_GRANTED;
}
HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwValue)
{
FIXME("(%s) stub\n", debugstr_w(lpszValueName) );
......
......@@ -25,7 +25,7 @@
@ stub SLGetSAMLicense
@ stub SLGetSLIDList
@ stub SLGetServiceInformation
@ stub SLGetWindowsInformation
@ stdcall SLGetWindowsInformation(wstr ptr ptr ptr)
@ stdcall SLGetWindowsInformationDWORD(wstr ptr)
@ stub SLInstallLicense
@ stub SLInstallProofOfPurchase
......
......@@ -29,7 +29,18 @@ extern "C" {
#define SLCAPI DECLSPEC_IMPORT
#endif
SLCAPI DWORD WINAPI SLGetWindowsInformationDWORD(LPCWSTR lpszValueName, LPDWORD pdwValue);
typedef enum _tagSLDATATYPE
{
SL_DATA_NONE = REG_NONE,
SL_DATA_SZ = REG_SZ,
SL_DATA_DWORD = REG_DWORD,
SL_DATA_BINARY = REG_BINARY,
SL_DATA_MULTI_SZ = REG_MULTI_SZ,
SL_DATA_SUM = 100,
} SLDATATYPE;
SLCAPI HRESULT WINAPI SLGetWindowsInformation(LPCWSTR, SLDATATYPE*, UINT*, LPBYTE*);
SLCAPI HRESULT WINAPI SLGetWindowsInformationDWORD(LPCWSTR, LPDWORD);
#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