mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
Make variable static, per Tom.
This commit is contained in:
parent
85376c6f7d
commit
5140058071
@ -6,7 +6,7 @@
|
||||
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/port/win32/mingwcompat.c,v 1.1 2007/10/29 12:35:41 mha Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/port/win32/mingwcompat.c,v 1.2 2007/10/29 14:04:42 mha Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -46,7 +46,7 @@ LoadKernel32()
|
||||
*/
|
||||
typedef BOOL (WINAPI * __RegisterWaitForSingleObject)
|
||||
(PHANDLE, HANDLE, WAITORTIMERCALLBACK, PVOID, ULONG, ULONG);
|
||||
__RegisterWaitForSingleObject _RegisterWaitForSingleObject = NULL;
|
||||
static __RegisterWaitForSingleObject _RegisterWaitForSingleObject = NULL;
|
||||
|
||||
BOOL WINAPI
|
||||
RegisterWaitForSingleObject(PHANDLE phNewWaitObject,
|
||||
|
Loading…
Reference in New Issue
Block a user