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
5d121fbe
Commit
5d121fbe
authored
Jan 31, 2003
by
Ove Kaaven
Committed by
Alexandre Julliard
Jan 31, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented RpcRaiseException.
parent
882fc038
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+11
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
5d121fbe
...
...
@@ -109,7 +109,7 @@
@ stub RpcObjectSetType
@ stub RpcProtseqVectorFreeA
@ stub RpcProtseqVectorFreeW
@ st
ub
RpcRaiseException
@ st
dcall RpcRaiseException(long)
RpcRaiseException
@ stub RpcRegisterAsyncInfo
@ stub RpcRevertToSelf
@ stub RpcRevertToSelfEx
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
5d121fbe
...
...
@@ -214,6 +214,17 @@ RPC_STATUS WINAPI RpcStringFreeW(unsigned short** String)
}
/*************************************************************************
* RpcRaiseException [RPCRT4.@]
*
* Raises an exception.
*/
void
WINAPI
RpcRaiseException
(
RPC_STATUS
exception
)
{
/* FIXME: translate exception? */
RaiseException
(
exception
,
0
,
0
,
NULL
);
}
/*************************************************************************
* UuidCompare [RPCRT4.@]
*
* (an educated-guess implementation)
...
...
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