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
f10af18f
Commit
f10af18f
authored
May 12, 2010
by
Marcus Meissner
Committed by
Alexandre Julliard
May 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add some missing CDECL.
parent
2ecd1dfa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
except.c
dlls/msvcrt/except.c
+1
-1
heap.c
dlls/msvcrt/heap.c
+1
-1
math.c
dlls/msvcrt/math.c
+1
-1
misc.c
dlls/msvcrt/misc.c
+2
-2
No files found.
dlls/msvcrt/except.c
View file @
f10af18f
...
...
@@ -576,7 +576,7 @@ static BOOL WINAPI msvcrt_console_handler(DWORD ctrlType)
return
ret
;
}
typedef
void
(
*
float_handler
)(
int
,
int
);
typedef
void
(
CDECL
*
float_handler
)(
int
,
int
);
/* The exception codes are actually NTSTATUS values */
static
const
struct
...
...
dlls/msvcrt/heap.c
View file @
f10af18f
...
...
@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
~(alignment - 1)) - offset))
typedef
void
(
*
MSVCRT_new_handler_func
)(
MSVCRT_size_t
size
);
typedef
void
(
CDECL
*
MSVCRT_new_handler_func
)(
MSVCRT_size_t
size
);
static
MSVCRT_new_handler_func
MSVCRT_new_handler
;
static
int
MSVCRT_new_mode
;
...
...
dlls/msvcrt/math.c
View file @
f10af18f
...
...
@@ -47,7 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
#define signbit(x) 0
#endif
typedef
int
(
*
MSVCRT_matherr_func
)(
struct
MSVCRT__exception
*
);
typedef
int
(
CDECL
*
MSVCRT_matherr_func
)(
struct
MSVCRT__exception
*
);
static
MSVCRT_matherr_func
MSVCRT_default_matherr_func
=
NULL
;
...
...
dlls/msvcrt/misc.c
View file @
f10af18f
...
...
@@ -88,7 +88,7 @@ void CDECL MSVCRT__sleep(MSVCRT_ulong timeout)
*/
void
*
CDECL
_lfind
(
const
void
*
match
,
const
void
*
start
,
unsigned
int
*
array_size
,
unsigned
int
elem_size
,
int
(
*
cf
)(
const
void
*
,
const
void
*
)
)
int
(
CDECL
*
cf
)(
const
void
*
,
const
void
*
)
)
{
unsigned
int
size
=
*
array_size
;
if
(
size
)
...
...
@@ -106,7 +106,7 @@ void* CDECL _lfind(const void* match, const void* start,
*/
void
*
CDECL
_lsearch
(
const
void
*
match
,
void
*
start
,
unsigned
int
*
array_size
,
unsigned
int
elem_size
,
int
(
*
cf
)(
const
void
*
,
const
void
*
)
)
int
(
CDECL
*
cf
)(
const
void
*
,
const
void
*
)
)
{
unsigned
int
size
=
*
array_size
;
if
(
size
)
...
...
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