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
c8a802ee
Commit
c8a802ee
authored
Dec 13, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Dec 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Make RpcRaiseException DECLSPEC_NORETURN, like it is in the PSDK.
parent
1f98ede4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+4
-2
rpcdce.h
include/rpcdce.h
+1
-1
No files found.
dlls/rpcrt4/rpcrt4_main.c
View file @
c8a802ee
...
...
@@ -239,10 +239,12 @@ RPC_STATUS WINAPI RpcStringFreeW(RPC_WSTR* String)
*
* Raises an exception.
*/
void
WINAPI
RpcRaiseException
(
RPC_STATUS
exception
)
void
DECLSPEC_NORETURN
WINAPI
RpcRaiseException
(
RPC_STATUS
exception
)
{
/*
FIXME: translate exception?
*/
/*
shouldn't return
*/
RaiseException
(
exception
,
0
,
0
,
NULL
);
ERR
(
"handler continued execution
\n
"
);
ExitProcess
(
1
);
}
/*************************************************************************
...
...
include/rpcdce.h
View file @
c8a802ee
...
...
@@ -289,7 +289,7 @@ RPC_STATUS RPC_ENTRY DceErrorInqTextA(RPC_STATUS e, RPC_CSTR buffer);
RPC_STATUS
RPC_ENTRY
DceErrorInqTextW
(
RPC_STATUS
e
,
RPC_WSTR
buffer
);
#define DceErrorInqText WINELIB_NAME_AW(DceErrorInqText)
RPCRTAPI
void
RPC_ENTRY
RPCRTAPI
DECLSPEC_NORETURN
void
RPC_ENTRY
RpcRaiseException
(
RPC_STATUS
exception
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
...
...
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