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
4de47f18
Commit
4de47f18
authored
Nov 17, 2018
by
Andrey Gusev
Committed by
Alexandre Julliard
Nov 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
5b16fb96
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
slc.c
dlls/slc/slc.c
+7
-0
slc.spec
dlls/slc/slc.spec
+1
-1
slpublic.h
include/slpublic.h
+3
-1
No files found.
dlls/slc/slc.c
View file @
4de47f18
...
...
@@ -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.@)
*
...
...
dlls/slc/slc.spec
View file @
4de47f18
...
...
@@ -30,7 +30,7 @@
@ stub SLInstallLicense
@ stub SLInstallProofOfPurchase
@ stub SLInstallSAMLicense
@ st
ub SLOpen
@ st
dcall SLOpen(ptr)
@ stub SLReArmWindows
@ stub SLRegisterEvent
@ stub SLRegisterWindowsEvent
...
...
include/slpublic.h
View file @
4de47f18
...
...
@@ -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
}
...
...
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