Adds DLLIMPORT modifier to check_function_bodies

Claudio Natoli
This commit is contained in:
Bruce Momjian 2004-03-22 03:15:33 +00:00
parent 08c0aa7281
commit a7f0747320
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.190 2004/03/15 15:56:24 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.191 2004/03/22 03:15:29 momjian Exp $
*
*--------------------------------------------------------------------
*/
@ -66,7 +66,7 @@
/* XXX these should appear in other modules' header files */
extern bool Log_connections;
extern bool Log_disconnections;
extern bool check_function_bodies;
extern DLLIMPORT bool check_function_bodies;
extern int PreAuthDelay;
extern int AuthenticationTimeout;
extern int CheckPointTimeout;

View File

@ -3,7 +3,7 @@
* procedural language
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.20 2004/03/19 18:58:07 tgl Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.21 2004/03/22 03:15:33 momjian Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
@ -45,7 +45,7 @@
#include "utils/lsyscache.h"
#include "utils/syscache.h"
extern bool check_function_bodies;
extern DLLIMPORT bool check_function_bodies;
static int plpgsql_firstcall = 1;