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
f0a4bc9e
Commit
f0a4bc9e
authored
Nov 01, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wer: Add a stub for WerReportSetParameter.
parent
b55e5a00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
main.c
dlls/wer/main.c
+23
-0
wer.spec
dlls/wer/wer.spec
+1
-1
No files found.
dlls/wer/main.c
View file @
f0a4bc9e
...
...
@@ -127,3 +127,26 @@ HRESULT WINAPI WerReportCreate(PCWSTR eventtype, WER_REPORT_TYPE reporttype, PWE
return
E_NOTIMPL
;
}
/***********************************************************************
* WerReportSetParameter (wer.@)
*
* Set one of 10 parameter / value pairs for a report handle
*
* PARAMS
* hreport [i] error reporting handle to add the parameter
* id [i] parameter to set (WER_P0 upto WER_P9)
* name [i] optional name of the parameter
* value [i] value of the parameter
*
* RETURNS
* Success: S_OK
* Failure: A HRESULT error code
*
*/
HRESULT
WINAPI
WerReportSetParameter
(
HREPORT
hreport
,
DWORD
id
,
PCWSTR
name
,
PCWSTR
value
)
{
FIXME
(
"(%p, %d, %s, %s) :stub
\n
"
,
hreport
,
id
,
debugstr_w
(
name
),
debugstr_w
(
value
));
return
E_NOTIMPL
;
}
dlls/wer/wer.spec
View file @
f0a4bc9e
...
...
@@ -67,7 +67,7 @@
@ stub WerReportAddFile
@ stdcall WerReportCloseHandle(ptr)
@ stdcall WerReportCreate(wstr long ptr ptr)
@ st
ub WerReportSetParameter
@ st
dcall WerReportSetParameter(ptr long wstr wstr)
@ stub WerReportSetUIOption
@ stub WerReportSubmit
@ stub WerpGetReportConsent
...
...
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