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
6f542163
Commit
6f542163
authored
Nov 02, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wer: Add a stub for WerReportSubmit.
parent
d7ed7549
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
main.c
dlls/wer/main.c
+28
-0
wer.spec
dlls/wer/wer.spec
+1
-1
No files found.
dlls/wer/main.c
View file @
6f542163
...
...
@@ -291,3 +291,31 @@ HRESULT WINAPI WerReportSetParameter(HREPORT hreport, DWORD id, PCWSTR name, PCW
return
E_NOTIMPL
;
}
/***********************************************************************
* WerReportSubmit (wer.@)
*
* Ask the user for permission and send the error report
* then kill or restart the application, when requested
*
* PARAMS
* hreport [i] error reporting handle to send
* consent [i] current transmit permission
* flags [i] flag to select dialog, transmission snd restart options
* presult [o] ptr, where the transmission result should be saved
*
* RETURNS
* Success: S_OK
* Failure: A HRESULT error code
*
*/
HRESULT
WINAPI
WerReportSubmit
(
HREPORT
hreport
,
WER_CONSENT
consent
,
DWORD
flags
,
PWER_SUBMIT_RESULT
presult
)
{
FIXME
(
"(%p, %d, 0x%x, %p) :stub
\n
"
,
hreport
,
consent
,
flags
,
presult
);
if
(
!
presult
)
return
E_INVALIDARG
;
*
presult
=
WerDisabled
;
return
E_NOTIMPL
;
}
dlls/wer/wer.spec
View file @
6f542163
...
...
@@ -69,7 +69,7 @@
@ stdcall WerReportCreate(wstr long ptr ptr)
@ stdcall WerReportSetParameter(ptr long wstr wstr)
@ stub WerReportSetUIOption
@ st
ub WerReportSubmit
@ st
dcall WerReportSubmit(ptr long long ptr)
@ stub WerpGetReportConsent
@ stub WerpIsDisabled
@ stub WerpOpenUserQueue
...
...
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