mirror of
https://github.com/postgres/postgres.git
synced 2025-06-17 17:02:08 +03:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
27 lines
726 B
C
27 lines
726 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* module.h
|
|
* this file contains general "module" stuff that used to be
|
|
* spread out between the following files:
|
|
*
|
|
* enbl.h module enable stuff
|
|
* trace.h module trace stuff (now gone)
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: module.h,v 1.6 2000/01/26 05:58:38 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef MODULE_H
|
|
#define MODULE_H
|
|
|
|
/*
|
|
* prototypes for functions in init/enbl.c
|
|
*/
|
|
extern bool BypassEnable(int *enableCountInOutP, bool on);
|
|
|
|
#endif /* MODULE_H */
|