Commit 558732ef authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Add missing __cdecl on some function pointers.

parent 62d6a4e9
......@@ -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)
......
......@@ -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*);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment