Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
26d60533
Commit
26d60533
authored
May 04, 2023
by
Shaun Ren
Committed by
Alexandre Julliard
May 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sapi: Implement ISpObjectToken::Set/GetStringValue.
parent
f6c1a744
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
token.c
dlls/sapi/token.c
+10
-4
No files found.
dlls/sapi/token.c
View file @
26d60533
...
...
@@ -1073,15 +1073,21 @@ static HRESULT WINAPI token_GetData( ISpObjectToken *iface,
static
HRESULT
WINAPI
token_SetStringValue
(
ISpObjectToken
*
iface
,
LPCWSTR
name
,
LPCWSTR
value
)
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
struct
object_token
*
This
=
impl_from_ISpObjectToken
(
iface
);
TRACE
(
"%p, %s, %s
\n
"
,
This
,
debugstr_w
(
name
),
debugstr_w
(
value
)
);
return
ISpRegDataKey_SetStringValue
(
This
->
data_key
,
name
,
value
);
}
static
HRESULT
WINAPI
token_GetStringValue
(
ISpObjectToken
*
iface
,
LPCWSTR
name
,
LPWSTR
*
value
)
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
struct
object_token
*
This
=
impl_from_ISpObjectToken
(
iface
);
TRACE
(
"%p, %s, %p
\n
"
,
This
,
debugstr_w
(
name
),
value
);
return
ISpRegDataKey_GetStringValue
(
This
->
data_key
,
name
,
value
);
}
static
HRESULT
WINAPI
token_SetDWORD
(
ISpObjectToken
*
iface
,
...
...
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