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
9a2914b1
Commit
9a2914b1
authored
Apr 11, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Apr 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Implement I_RpcExceptionFilter.
parent
29565d55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+16
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
9a2914b1
...
...
@@ -42,7 +42,7 @@
@ stub I_RpcConnectionSetSockBuffSize
@ stub I_RpcDeleteMutex
@ stub I_RpcEnableWmiTrace # wxp
@ st
ub I_RpcExceptionFilter # wxp
@ st
dcall I_RpcExceptionFilter(long)
@ stdcall I_RpcFree(ptr)
@ stdcall I_RpcFreeBuffer(ptr)
@ stub I_RpcFreePipeBuffer
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
9a2914b1
...
...
@@ -937,6 +937,22 @@ LONG WINAPI I_RpcMapWin32Status(RPC_STATUS status)
}
/******************************************************************************
* I_RpcExceptionFilter (rpcrt4.@)
*/
int
WINAPI
I_RpcExceptionFilter
(
ULONG
ExceptionCode
)
{
TRACE
(
"0x%x
\n
"
,
ExceptionCode
);
switch
(
ExceptionCode
)
{
case
EXCEPTION_ACCESS_VIOLATION
:
case
EXCEPTION_ILLEGAL_INSTRUCTION
:
return
EXCEPTION_CONTINUE_SEARCH
;
default:
return
EXCEPTION_EXECUTE_HANDLER
;
}
}
/******************************************************************************
* RpcErrorStartEnumeration (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcErrorStartEnumeration
(
RPC_ERROR_ENUM_HANDLE
*
EnumHandle
)
...
...
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