Blame ma_environment.h

Packit Service 17f749
/************************************************************************************
Packit Service 17f749
   Copyright (C) 2013 SkySQL AB
Packit Service 17f749
   
Packit Service 17f749
   This library is free software; you can redistribute it and/or
Packit Service 17f749
   modify it under the terms of the GNU Library General Public
Packit Service 17f749
   License as published by the Free Software Foundation; either
Packit Service 17f749
   version 2.1 of the License, or (at your option) any later version.
Packit Service 17f749
   
Packit Service 17f749
   This library is distributed in the hope that it will be useful,
Packit Service 17f749
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 17f749
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 17f749
   Library General Public License for more details.
Packit Service 17f749
   
Packit Service 17f749
   You should have received a copy of the GNU Library General Public
Packit Service 17f749
   License along with this library; if not see <http://www.gnu.org/licenses>
Packit Service 17f749
   or write to the Free Software Foundation, Inc., 
Packit Service 17f749
   51 Franklin St., Fifth Floor, Boston, MA 02110, USA
Packit Service 17f749
*************************************************************************************/
Packit Service 17f749
#ifndef _ma_environment_h_
Packit Service 17f749
#define _ma_environment_h_
Packit Service 17f749
Packit Service 17f749
MADB_Env *MADB_EnvInit();
Packit Service 17f749
SQLRETURN MADB_EnvFree(MADB_Env *Env);
Packit Service 17f749
Packit Service 17f749
SQLRETURN MADB_EnvSetAttr(MADB_Env* Env, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER StringLength);
Packit Service 17f749
SQLRETURN MADB_EnvGetAttr(MADB_Env *Env, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength,
Packit Service 17f749
                          SQLINTEGER *StringLengthPtr);
Packit Service 17f749
Packit Service 17f749
extern Client_Charset SourceAnsiCs;
Packit Service 17f749
Packit Service 17f749
#endif /* _ma_environment_h_ */