blob: 90f088ea2d05590848a2c26d46edbcb0a2464c84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*-------------------------------------------------------------------------
*
* ps_status.h
*
* Declarations for backend/utils/misc/ps_status.c
*
*-------------------------------------------------------------------------
*/
#ifndef PS_STATUS_H
#define PS_STATUS_H
#include "libpq/libpq-be.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 */
|