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
558732ef
Commit
558732ef
authored
Jan 03, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add missing __cdecl on some function pointers.
parent
62d6a4e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
process.h
include/msvcrt/process.h
+1
-1
No files found.
dlls/msvcrt/msvcrt.h
View file @
558732ef
...
...
@@ -598,7 +598,7 @@ struct MSVCRT__stat64 {
#define MSVCRT_SIGABRT 22
#define MSVCRT_NSIG (MSVCRT_SIGABRT + 1)
typedef
void
(
*
MSVCRT___sighandler_t
)(
int
);
typedef
void
(
__cdecl
*
MSVCRT___sighandler_t
)(
int
);
#define MSVCRT_SIG_DFL ((MSVCRT___sighandler_t)0)
#define MSVCRT_SIG_IGN ((MSVCRT___sighandler_t)1)
...
...
include/msvcrt/process.h
View file @
558732ef
...
...
@@ -24,7 +24,7 @@
extern
"C"
{
#endif
typedef
void
(
*
_beginthread_start_routine_t
)(
void
*
);
typedef
void
(
__cdecl
*
_beginthread_start_routine_t
)(
void
*
);
typedef
unsigned
int
(
__stdcall
*
_beginthreadex_start_routine_t
)(
void
*
);
uintptr_t
__cdecl
_beginthread
(
_beginthread_start_routine_t
,
unsigned
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