Commit 5dbdab59 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcp60: Make _Lockit_ctor_locktype() static.

parent 1c640fd8
......@@ -101,7 +101,7 @@ void free_lockit(void) {
DeleteCriticalSection(&lockit_cs);
}
_Lockit* __thiscall _Lockit_ctor_locktype(_Lockit *this, int locktype)
static _Lockit* __thiscall _Lockit_ctor_locktype(_Lockit *this, int locktype)
{
EnterCriticalSection(&lockit_cs);
return this;
......
......@@ -266,7 +266,6 @@ typedef struct {
void init_lockit(void);
void free_lockit(void);
_Lockit* __thiscall _Lockit_ctor_locktype(_Lockit*, int);
void __thiscall _Lockit_dtor(_Lockit*);
/* class mutex */
......
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