mirror of
https://github.com/postgres/postgres.git
synced 2025-06-06 00:02:36 -04:00
29 lines
710 B
C
29 lines
710 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* dbcommands.h
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: dbcommands.h,v 1.11 1999/12/10 03:56:06 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DBCOMMANDS_H
|
|
#define DBCOMMANDS_H
|
|
|
|
#include <signal.h>
|
|
#include "tcop/dest.h"
|
|
|
|
/*
|
|
* Originally from tmp/daemon.h. The functions declared in daemon.h does not
|
|
* exist; hence removed. -- AY 7/29/94
|
|
*/
|
|
#define SIGKILLDAEMON1 SIGTERM
|
|
|
|
extern void createdb(char *dbname, char *dbpath, int encoding, CommandDest);
|
|
extern void dropdb(char *dbname, CommandDest);
|
|
|
|
#endif /* DBCOMMANDS_H */
|