Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wine
wine
Commits
a31c1451
Commit
a31c1451
authored
1 year ago
by
Vijay Kiran Kamuju
Browse files
Options
Downloads
Patches
Plain Diff
sppc: Add stub SLInstallLicense().
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56316
parent
3a736901
Branches
Branches containing commit
No related tags found
1 merge request
!5522
sppc: Add stub SLInstallLicense().
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/sppc/sppc.c
+10
-0
10 additions, 0 deletions
dlls/sppc/sppc.c
dlls/sppc/sppc.spec
+1
-1
1 addition, 1 deletion
dlls/sppc/sppc.spec
include/slpublic.h
+1
-0
1 addition, 0 deletions
include/slpublic.h
with
12 additions
and
1 deletion
dlls/sppc/sppc.c
+
10
−
0
View file @
a31c1451
...
...
@@ -39,6 +39,16 @@ HRESULT WINAPI SLGetLicensingStatusInformation(HSLC handle, const SLID *app, con
return
SL_E_RIGHT_NOT_CONSUMED
;
}
HRESULT
WINAPI
SLInstallLicense
(
HSLC
handle
,
UINT
size
,
const
BYTE
*
license
,
SLID
*
fileid
)
{
FIXME
(
"(%p %u %p %p) stub
\n
"
,
handle
,
size
,
license
,
fileid
);
if
(
!
handle
)
return
E_INVALIDARG
;
return
S_OK
;
}
HRESULT
WINAPI
SLOpen
(
HSLC
*
handle
)
{
FIXME
(
"(%p) stub
\n
"
,
handle
);
...
...
This diff is collapsed.
Click to expand it.
dlls/sppc/sppc.spec
+
1
−
1
View file @
a31c1451
...
...
@@ -46,7 +46,7 @@
@ stub SLGetProductSkuInformation
@ stub SLGetSLIDList
@ stub SLGetServiceInformation
@ st
ub
SLInstallLicense
@ st
dcall
SLInstallLicense
(ptr long ptr ptr)
@ stub SLInstallProofOfPurchase
@ stub SLInstallProofOfPurchaseEx
@ stub SLIsGenuineLocalEx
...
...
This diff is collapsed.
Click to expand it.
include/slpublic.h
+
1
−
0
View file @
a31c1451
...
...
@@ -65,6 +65,7 @@ typedef struct _tagSL_LICENSING_STATUS
SLCAPI
HRESULT
WINAPI
SLGetLicensingStatusInformation
(
HSLC
,
const
SLID
*
,
const
SLID
*
,
LPCWSTR
,
UINT
*
,
SL_LICENSING_STATUS
**
);
SLCAPI
HRESULT
WINAPI
SLGetWindowsInformation
(
LPCWSTR
,
SLDATATYPE
*
,
UINT
*
,
LPBYTE
*
);
SLCAPI
HRESULT
WINAPI
SLGetWindowsInformationDWORD
(
LPCWSTR
,
LPDWORD
);
SLCAPI
HRESULT
WINAPI
SLInstallLicense
(
HSLC
,
UINT
,
const
BYTE
*
,
SLID
*
);
SLCAPI
HRESULT
WINAPI
SLOpen
(
HSLC
*
);
#ifdef __cplusplus
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment