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
8842cd13
Commit
8842cd13
authored
Jan 25, 2012
by
Austin English
Committed by
Alexandre Julliard
Jan 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wer: Add a stub for WerReportSetUIOption.
parent
056de6fb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletion
+27
-1
main.c
dlls/wer/main.c
+9
-0
wer.spec
dlls/wer/wer.spec
+1
-1
werapi.h
include/werapi.h
+17
-0
No files found.
dlls/wer/main.c
View file @
8842cd13
...
...
@@ -348,3 +348,12 @@ HRESULT WINAPI WerReportSubmit(HREPORT hreport, WER_CONSENT consent, DWORD flags
*
presult
=
WerDisabled
;
return
E_NOTIMPL
;
}
/***********************************************************************
* WerReportSetUIOption (wer.@)
*/
HRESULT
WINAPI
WerReportSetUIOption
(
HREPORT
hreport
,
WER_REPORT_UI
uitype
,
PCWSTR
value
)
{
FIXME
(
"(%p, %d, %s) :stub
\n
"
,
hreport
,
uitype
,
debugstr_w
(
value
));
return
E_NOTIMPL
;
}
dlls/wer/wer.spec
View file @
8842cd13
...
...
@@ -68,7 +68,7 @@
@ stdcall WerReportCloseHandle(ptr)
@ stdcall WerReportCreate(wstr long ptr ptr)
@ stdcall WerReportSetParameter(ptr long wstr wstr)
@ st
ub WerReportSetUIOption
@ st
dcall WerReportSetUIOption(ptr long wstr)
@ stdcall WerReportSubmit(ptr long long ptr)
@ stub WerpGetReportConsent
@ stub WerpIsDisabled
...
...
include/werapi.h
View file @
8842cd13
...
...
@@ -121,6 +121,22 @@ typedef enum _WER_DUMP_TYPE
WerDumpTypeMax
}
WER_DUMP_TYPE
;
typedef
enum
_WER_REPORT_UI
{
WerUIAdditionalDataDlgHeader
=
1
,
WerUIIconFilePath
=
2
,
WerUIConsentDlgHeader
=
3
,
WerUIConsentDlgBody
=
4
,
WerUIOnlineSolutionCheckText
=
5
,
WerUIOfflineSolutionCheckText
=
6
,
WerUICloseText
=
7
,
WerUICloseDlgHeader
=
8
,
WerUICloseDlgBody
=
9
,
WerUICloseDlgButtonText
=
10
,
WerUICustomActionButtonText
=
11
,
WerUIMax
}
WER_REPORT_UI
;
/* #### */
typedef
struct
_WER_DUMP_CUSTOM_OPTIONS
...
...
@@ -153,6 +169,7 @@ HRESULT WINAPI WerRemoveExcludedApplication(PCWSTR, BOOL);
HRESULT
WINAPI
WerReportCloseHandle
(
HREPORT
);
HRESULT
WINAPI
WerReportCreate
(
PCWSTR
,
WER_REPORT_TYPE
,
PWER_REPORT_INFORMATION
,
HREPORT
*
);
HRESULT
WINAPI
WerReportSetParameter
(
HREPORT
,
DWORD
,
PCWSTR
,
PCWSTR
);
HRESULT
WINAPI
WerReportSetUIOption
(
HREPORT
,
WER_REPORT_UI
,
PCWSTR
);
HRESULT
WINAPI
WerReportSubmit
(
HREPORT
,
WER_CONSENT
,
DWORD
,
PWER_SUBMIT_RESULT
);
#ifdef __cplusplus
...
...
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