Commit ce125cc4 authored by wuliande's avatar wuliande Committed by Alexandre Julliard

msvcp90: Make _Condition_variable_* function pointers static.

parent 28de0a56
......@@ -88,10 +88,10 @@ static bool (__thiscall *critical_section_trylock)(critical_section*);
static _Condition_variable* (__thiscall *_Condition_variable_ctor)(_Condition_variable*);
static void (__thiscall *_Condition_variable_dtor)(_Condition_variable*);
static void (__thiscall *_Condition_variable_wait)(_Condition_variable*, critical_section*);
bool (__thiscall *_Condition_variable_wait_for)(_Condition_variable*,
static bool (__thiscall *_Condition_variable_wait_for)(_Condition_variable*,
critical_section*, unsigned int);
void (__thiscall *_Condition_variable_notify_one)(_Condition_variable*);
void (__thiscall *_Condition_variable_notify_all)(_Condition_variable*);
static void (__thiscall *_Condition_variable_notify_one)(_Condition_variable*);
static void (__thiscall *_Condition_variable_notify_all)(_Condition_variable*);
void cs_init(cs *cs)
{
......
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