Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
944ef25f
Commit
944ef25f
authored
Apr 15, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix DECLSPEC_NORETURN usage.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9e81463d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
14 deletions
+14
-14
eh.h
include/msvcrt/eh.h
+2
-2
process.h
include/msvcrt/process.h
+5
-5
stdlib.h
include/msvcrt/stdlib.h
+4
-4
exception.h
include/wine/exception.h
+3
-3
No files found.
include/msvcrt/eh.h
View file @
944ef25f
...
...
@@ -40,8 +40,8 @@ terminate_function __cdecl set_terminate(terminate_function func);
unexpected_function
__cdecl
set_unexpected
(
unexpected_function
func
);
_se_translator_function
__cdecl
set_se_translator
(
_se_translator_function
func
);
void
__cdecl
terminate
(
void
)
DECLSPEC_NORETURN
;
void
__cdecl
unexpected
(
void
)
DECLSPEC_NORETURN
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
terminate
(
void
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
unexpected
(
void
)
;
#include <poppack.h>
...
...
include/msvcrt/process.h
View file @
944ef25f
...
...
@@ -31,8 +31,8 @@ typedef unsigned int (__stdcall *_beginthreadex_start_routine_t)(void *);
uintptr_t
__cdecl
_beginthread
(
_beginthread_start_routine_t
,
unsigned
int
,
void
*
);
uintptr_t
__cdecl
_beginthreadex
(
void
*
,
unsigned
int
,
_beginthreadex_start_routine_t
,
void
*
,
unsigned
int
,
unsigned
int
*
);
intptr_t
__cdecl
_cwait
(
int
*
,
intptr_t
,
int
);
void
__cdecl
_endthread
(
void
)
DECLSPEC_NORETURN
;
void
__cdecl
_endthreadex
(
unsigned
int
)
DECLSPEC_NORETURN
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
_endthread
(
void
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
_endthreadex
(
unsigned
int
)
;
intptr_t
WINAPIV
_execl
(
const
char
*
,
const
char
*
,...);
intptr_t
WINAPIV
_execle
(
const
char
*
,
const
char
*
,...);
intptr_t
WINAPIV
_execlp
(
const
char
*
,
const
char
*
,...);
...
...
@@ -53,9 +53,9 @@ intptr_t __cdecl _spawnvpe(int,const char*,const char* const *,const char* cons
void
__cdecl
_c_exit
(
void
);
void
__cdecl
_cexit
(
void
);
void
__cdecl
_exit
(
int
)
DECLSPEC_NORETURN
;
void
__cdecl
abort
(
void
)
DECLSPEC_NORETURN
;
void
__cdecl
exit
(
int
)
DECLSPEC_NORETURN
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
_exit
(
int
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
abort
(
void
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
exit
(
int
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
quick_exit
(
int
);
int
__cdecl
system
(
const
char
*
);
...
...
include/msvcrt/stdlib.h
View file @
944ef25f
...
...
@@ -182,9 +182,9 @@ errno_t __cdecl _ui64toa_s(unsigned __int64,char*,size_t,int);
char
*
__cdecl
_ultoa
(
__msvcrt_ulong
,
char
*
,
int
);
errno_t
__cdecl
_ultoa_s
(
__msvcrt_ulong
,
char
*
,
size_t
,
int
);
void
__cdecl
_Exit
(
int
)
DECLSPEC_NORETURN
;
void
__cdecl
_exit
(
int
)
DECLSPEC_NORETURN
;
void
__cdecl
abort
(
void
)
DECLSPEC_NORETURN
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
_Exit
(
int
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
_exit
(
int
)
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
abort
(
void
)
;
int
__cdecl
abs
(
int
);
int
__cdecl
atexit
(
void
(
__cdecl
*
)(
void
));
double
__cdecl
atof
(
const
char
*
);
...
...
@@ -198,7 +198,7 @@ div_t __cdecl div(int,int);
ldiv_t
__cdecl
ldiv
(
__msvcrt_long
,
__msvcrt_long
);
#endif
lldiv_t
__cdecl
lldiv
(
__int64
,
__int64
);
void
__cdecl
exit
(
int
)
DECLSPEC_NORETURN
;
_ACRTIMP
DECLSPEC_NORETURN
void
__cdecl
exit
(
int
)
;
void
__cdecl
free
(
void
*
);
char
*
__cdecl
getenv
(
const
char
*
);
__msvcrt_long
__cdecl
labs
(
__msvcrt_long
);
...
...
include/wine/exception.h
View file @
944ef25f
...
...
@@ -105,9 +105,9 @@ typedef struct { int reg; } __wine_jmp_buf;
extern
int
__cdecl
__attribute__
((
__nothrow__
,
__returns_twice__
))
__wine_setjmpex
(
__wine_jmp_buf
*
buf
,
EXCEPTION_REGISTRATION_RECORD
*
frame
)
DECLSPEC_HIDDEN
;
extern
void
__cdecl
__wine_longjmp
(
__wine_jmp_buf
*
buf
,
int
retval
)
DECLSPEC_HIDDEN
DECLSPEC_NORETUR
N
;
extern
void
__cdecl
__wine_rtl_unwind
(
EXCEPTION_REGISTRATION_RECORD
*
frame
,
EXCEPTION_RECORD
*
record
,
void
(
*
target
)(
void
)
)
DECLSPEC_HIDDEN
DECLSPEC_NORETUR
N
;
extern
void
DECLSPEC_NORETURN
__cdecl
__wine_longjmp
(
__wine_jmp_buf
*
buf
,
int
retval
)
DECLSPEC_HIDDE
N
;
extern
void
DECLSPEC_NORETURN
__cdecl
__wine_rtl_unwind
(
EXCEPTION_REGISTRATION_RECORD
*
frame
,
EXCEPTION_RECORD
*
record
,
void
(
*
target
)(
void
)
)
DECLSPEC_HIDDE
N
;
extern
DWORD
__cdecl
__wine_exception_handler
(
EXCEPTION_RECORD
*
record
,
EXCEPTION_REGISTRATION_RECORD
*
frame
,
CONTEXT
*
context
,
...
...
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