diff options
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/dbcommands.h | 6 | ||||
| -rw-r--r-- | src/include/commands/user.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index 846309ac84..48cec93bd7 100644 --- a/src/include/commands/dbcommands.h +++ b/src/include/commands/dbcommands.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dbcommands.h,v 1.7 1999/02/13 23:21:18 momjian Exp $ + * $Id: dbcommands.h,v 1.8 1999/03/16 03:24:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ */ #define SIGKILLDAEMON1 SIGTERM -extern void createdb(char *dbname, char *dbpath, int encoding); -extern void destroydb(char *dbname); +extern void createdb(char *dbname, char *dbpath, int encoding, CommandDest); +extern void destroydb(char *dbname, CommandDest); #endif /* DBCOMMANDS_H */ diff --git a/src/include/commands/user.h b/src/include/commands/user.h index 3849339947..edf836e5bb 100644 --- a/src/include/commands/user.h +++ b/src/include/commands/user.h @@ -10,8 +10,8 @@ #ifndef USER_H #define USER_H -extern void DefineUser(CreateUserStmt *stmt); -extern void AlterUser(AlterUserStmt *stmt); -extern void RemoveUser(char *user); +extern void DefineUser(CreateUserStmt *stmt, CommandDest); +extern void AlterUser(AlterUserStmt *stmt, CommandDest); +extern void RemoveUser(char *user, CommandDest); #endif /* USER_H */ |
