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
852e0457
Commit
852e0457
authored
Apr 18, 2013
by
Austin English
Committed by
Alexandre Julliard
Apr 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr110: Forward __crtSetUnhandledExceptionFilter to kernel32.SetUnhandledExceptionFilter.
parent
758911a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
msvcr110.c
dlls/msvcr110/msvcr110.c
+5
-0
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
No files found.
dlls/msvcr110/msvcr110.c
View file @
852e0457
...
...
@@ -39,3 +39,8 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
}
return
TRUE
;
}
LPTOP_LEVEL_EXCEPTION_FILTER
CDECL
MSVCR110__crtSetUnhandledExceptionFilter
(
LPTOP_LEVEL_EXCEPTION_FILTER
filter
)
{
return
SetUnhandledExceptionFilter
(
filter
);
}
dlls/msvcr110/msvcr110.spec
View file @
852e0457
...
...
@@ -928,7 +928,7 @@
@ stub -arch=i386,win64 __crtLCMapStringEx
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
@
stub
__crtSetUnhandledExceptionFilter
@
cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110
__crtSetUnhandledExceptionFilter
@ stub -arch=i386,win64 __crtTerminateProcess
@ stub -arch=i386,win64 __crtUnhandledException
@ cdecl __daylight() msvcrt.__daylight
...
...
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