mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 20:37:32 +08:00
25 lines
500 B
C
25 lines
500 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* ps_status.h
|
|
*
|
|
* Declarations for backend/utils/misc/ps_status.c
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef PS_STATUS_H
|
|
#define PS_STATUS_H
|
|
|
|
void
|
|
init_ps_display(int argc, char *argv[],
|
|
const char * username, const char * dbname,
|
|
const char * host_info);
|
|
|
|
void
|
|
set_ps_display(const char * value);
|
|
|
|
const char *
|
|
get_ps_display(void);
|
|
|
|
#endif /* PS_STATUS_H */
|