Commit 5b1c2668 authored by Alexandre Julliard's avatar Alexandre Julliard

vcomp: Fix varargs calling conventions.

parent e9dd8ac8
......@@ -1772,7 +1772,7 @@ static void CDECL c2vectparallel_wrapper(int start, int end, int step, int end_i
_vcomp_fork_call_wrapper(function, nargs, wrapper_args);
}
void CDECL C2VectParallel(int start, int end, int step, BOOL end_included, int thread_count,
void WINAPIV C2VectParallel(int start, int end, int step, BOOL end_included, int thread_count,
BOOL dynamic_distribution, void *function, int nargs, ...)
{
struct vcomp_thread_data *thread_data;
......
......@@ -23,7 +23,7 @@
static HMODULE vcomp_handle;
static void (CDECL *pC2VectParallel)(int start, int end, int step, BOOL end_included, int thread_count,
static void (WINAPIV *pC2VectParallel)(int start, int end, int step, BOOL end_included, int thread_count,
BOOL dynamic_distribution, void *function, int nargs, ...);
static int (CDECL *p_vcomp_get_thread_num)(void);
static int (CDECL *pomp_get_num_threads)(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