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
54028273
Commit
54028273
authored
Nov 05, 2011
by
Thomas Faber
Committed by
Alexandre Julliard
Nov 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix MSVC build in exit.c and msvcrt.h.
parent
24a1fc37
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
exit.c
dlls/msvcrt/exit.c
+1
-1
msvcrt.h
dlls/msvcrt/msvcrt.h
+7
-7
No files found.
dlls/msvcrt/exit.c
View file @
54028273
...
...
@@ -300,7 +300,7 @@ void CDECL MSVCRT_exit(int exitcode)
{
HMODULE
hmscoree
;
static
const
WCHAR
mscoreeW
[]
=
{
'm'
,
's'
,
'c'
,
'o'
,
'r'
,
'e'
,
'e'
,
0
};
void
WINAPI
(
*
pCorExitProcess
)(
int
);
void
(
WINAPI
*
pCorExitProcess
)(
int
);
TRACE
(
"(%d)
\n
"
,
exitcode
);
MSVCRT__cexit
();
...
...
dlls/msvcrt/msvcrt.h
View file @
54028273
...
...
@@ -76,14 +76,14 @@ typedef __int64 DECLSPEC_ALIGN(8) MSVCRT___time64_t;
typedef
__int64
DECLSPEC_ALIGN
(
8
)
MSVCRT_fpos_t
;
typedef
int
MSVCRT_mbstate_t
;
typedef
void
(
*
__cdecl
MSVCRT_terminate_handler
)(
void
);
typedef
void
(
*
__cdecl
MSVCRT_terminate_function
)(
void
);
typedef
void
(
*
__cdecl
MSVCRT_unexpected_handler
)(
void
);
typedef
void
(
*
__cdecl
MSVCRT_unexpected_function
)(
void
);
typedef
void
(
*
__cdecl
MSVCRT__se_translator_function
)(
unsigned
int
code
,
struct
_EXCEPTION_POINTERS
*
info
);
typedef
void
(
*
__cdecl
MSVCRT__beginthread_start_routine_t
)(
void
*
);
typedef
void
(
__cdecl
*
MSVCRT_terminate_handler
)(
void
);
typedef
void
(
__cdecl
*
MSVCRT_terminate_function
)(
void
);
typedef
void
(
__cdecl
*
MSVCRT_unexpected_handler
)(
void
);
typedef
void
(
__cdecl
*
MSVCRT_unexpected_function
)(
void
);
typedef
void
(
__cdecl
*
MSVCRT__se_translator_function
)(
unsigned
int
code
,
struct
_EXCEPTION_POINTERS
*
info
);
typedef
void
(
__cdecl
*
MSVCRT__beginthread_start_routine_t
)(
void
*
);
typedef
unsigned
int
(
__stdcall
*
MSVCRT__beginthreadex_start_routine_t
)(
void
*
);
typedef
int
(
*
__cdecl
MSVCRT__onexit_t
)(
void
);
typedef
int
(
__cdecl
*
MSVCRT__onexit_t
)(
void
);
typedef
void
(
__cdecl
*
MSVCRT_invalid_parameter_handler
)(
const
MSVCRT_wchar_t
*
,
const
MSVCRT_wchar_t
*
,
const
MSVCRT_wchar_t
*
,
unsigned
,
MSVCRT_uintptr_t
);
typedef
void
(
__cdecl
*
MSVCRT_purecall_handler
)(
void
);
typedef
void
(
__cdecl
*
MSVCRT_security_error_handler
)(
int
,
void
*
);
...
...
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