📄 variable.h
字号:
/* * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * * $Id: variable.h,v 1.8 1998/10/08 18:30:27 momjian Exp $ * */#ifndef VARIABLE_H#define VARIABLE_H 1enum DateFormat{ Date_Postgres, Date_SQL, Date_ISO};/*-----------------------------------------------------------------------*/struct PGVariables{ struct { bool euro; enum DateFormat format; } date;};extern struct PGVariables PGVariables;/*-----------------------------------------------------------------------*/bool SetPGVariable(const char *, const char *);bool GetPGVariable(const char *);bool ResetPGVariable(const char *);#endif /* VARIABLE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -