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
ac194c38
Commit
ac194c38
authored
Oct 26, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wer: Add a stub for WerRemoveExcludedApplication.
parent
48f3adc0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
main.c
dlls/wer/main.c
+20
-0
wer.spec
dlls/wer/wer.spec
+1
-1
No files found.
dlls/wer/main.c
View file @
ac194c38
...
...
@@ -49,3 +49,23 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
/***********************************************************************
* WerRemoveExcludedApplication (wer.@)
*
* remove an application from the exclusion list
*
* PARAMS
* exeName [i] The application name
* allUsers [i] for all users (TRUE) or for the current user (FALSE)
*
* RESULTS
* SUCCESS S_OK
* FAILURE A HRESULT error code
*
*/
HRESULT
WINAPI
WerRemoveExcludedApplication
(
PCWSTR
exeName
,
BOOL
allUsers
)
{
FIXME
(
"(%s, %d) :stub
\n
"
,
debugstr_w
(
exeName
),
allUsers
);
return
E_NOTIMPL
;
}
dlls/wer/wer.spec
View file @
ac194c38
...
...
@@ -62,7 +62,7 @@
@ stub WerpSubmitReportFromStore
@ stub WerpSvcReportFromMachineQueue
@ stdcall WerAddExcludedApplication(wstr long)
@ st
ub WerRemoveExcludedApplication
@ st
dcall WerRemoveExcludedApplication(wstr long)
@ stub WerReportAddDump
@ stub WerReportAddFile
@ stub WerReportCloseHandle
...
...
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