environ.h

来自「关系型数据库 Postgresql 6.5.2」· C头文件 代码 · 共 46 行

H
46
字号
/* File:            environ.h * * Description:     See "environ.c" * * Comments:        See "notice.txt" for copyright and license information. * */#ifndef __ENVIRON_H__#define __ENVIRON_H__#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "psqlodbc.h"#ifndef WIN32#include "iodbc.h"#include "isql.h"#include "isqlext.h"#else#include <windows.h>#include <sql.h>#include <sqlext.h>#endif#define ENV_ALLOC_ERROR 1/**********		Environment Handle	*************/struct EnvironmentClass_ {	char *errormsg;	int errornumber;};/*	Environment prototypes */EnvironmentClass *EN_Constructor(void);char EN_Destructor(EnvironmentClass *self);char EN_get_error(EnvironmentClass *self, int *number, char **message);char EN_add_connection(EnvironmentClass *self, ConnectionClass *conn);char EN_remove_connection(EnvironmentClass *self, ConnectionClass *conn);void EN_log_error(char *func, char *desc, EnvironmentClass *self);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?