Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e97746a5
Commit
e97746a5
authored
Oct 07, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Oct 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slc: Add stub for SLGetWindowsInformation.
parent
f272c126
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
slc.c
dlls/slc/slc.c
+8
-1
slc.spec
dlls/slc/slc.spec
+1
-1
slpublic.h
include/slpublic.h
+12
-1
No files found.
dlls/slc/slc.c
View file @
e97746a5
...
...
@@ -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
)
);
...
...
dlls/slc/slc.spec
View file @
e97746a5
...
...
@@ -25,7 +25,7 @@
@ stub SLGetSAMLicense
@ stub SLGetSLIDList
@ stub SLGetServiceInformation
@ st
ub SLGetWindowsInformation
@ st
dcall SLGetWindowsInformation(wstr ptr ptr ptr)
@ stdcall SLGetWindowsInformationDWORD(wstr ptr)
@ stub SLInstallLicense
@ stub SLInstallProofOfPurchase
...
...
include/slpublic.h
View file @
e97746a5
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment