Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
d52a9cdd
Commit
d52a9cdd
authored
Oct 26, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Oct 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement SetCommandText proxy and stub.
parent
19672d71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
4 deletions
+21
-4
usrmarshal.c
dlls/msdaps/usrmarshal.c
+21
-4
No files found.
dlls/msdaps/usrmarshal.c
View file @
d52a9cdd
...
...
@@ -661,14 +661,31 @@ HRESULT __RPC_STUB ICommandText_GetCommandText_Stub(ICommandText* This, GUID *pg
HRESULT
CALLBACK
ICommandText_SetCommandText_Proxy
(
ICommandText
*
This
,
REFGUID
rguidDialect
,
LPCOLESTR
pwszCommand
)
{
FIXME
(
"(%p)->(%s, %s): stub
\n
"
,
This
,
debugstr_guid
(
rguidDialect
),
debugstr_w
(
pwszCommand
));
return
E_NOTIMPL
;
HRESULT
hr
;
IErrorInfo
*
error
;
TRACE
(
"(%p)->(%s, %s)
\n
"
,
This
,
debugstr_guid
(
rguidDialect
),
debugstr_w
(
pwszCommand
));
hr
=
ICommandText_RemoteSetCommandText_Proxy
(
This
,
rguidDialect
,
pwszCommand
,
&
error
);
if
(
error
)
{
SetErrorInfo
(
0
,
error
);
IErrorInfo_Release
(
error
);
}
return
hr
;
}
HRESULT
__RPC_STUB
ICommandText_SetCommandText_Stub
(
ICommandText
*
This
,
REFGUID
rguidDialect
,
LPCOLESTR
pwszCommand
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%s, %s, %p): stub
\n
"
,
This
,
debugstr_guid
(
rguidDialect
),
debugstr_w
(
pwszCommand
),
HRESULT
hr
;
TRACE
(
"(%p)->(%s, %s, %p)
\n
"
,
This
,
debugstr_guid
(
rguidDialect
),
debugstr_w
(
pwszCommand
),
ppErrorInfoRem
);
return
E_NOTIMPL
;
*
ppErrorInfoRem
=
NULL
;
hr
=
ICommandText_SetCommandText
(
This
,
rguidDialect
,
pwszCommand
);
if
(
FAILED
(
hr
))
GetErrorInfo
(
0
,
ppErrorInfoRem
);
return
hr
;
}
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