mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Make variable static, per Tom.
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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)
|
typedef BOOL (WINAPI * __RegisterWaitForSingleObject)
|
||||||
(PHANDLE, HANDLE, WAITORTIMERCALLBACK, PVOID, ULONG, ULONG);
|
(PHANDLE, HANDLE, WAITORTIMERCALLBACK, PVOID, ULONG, ULONG);
|
||||||
__RegisterWaitForSingleObject _RegisterWaitForSingleObject = NULL;
|
static __RegisterWaitForSingleObject _RegisterWaitForSingleObject = NULL;
|
||||||
|
|
||||||
BOOL WINAPI
|
BOOL WINAPI
|
||||||
RegisterWaitForSingleObject(PHANDLE phNewWaitObject,
|
RegisterWaitForSingleObject(PHANDLE phNewWaitObject,
|
||||||
|
Reference in New Issue
Block a user