1 /**********************************************************************
2  * SQLEndTran
3  *
4  **********************************************************************
5  *
6  * This code was created by Peter Harvey (mostly during Christmas 98/99).
7  * This code is LGPL. Please ensure that this message remains in future
8  * distributions and uses of this code (thats about all I get out of it).
9  * - Peter Harvey pharvey@codebydesign.com
10  *
11  **********************************************************************/
12 
13 #include <config.h>
14 #include "driver.h"
15 
SQLEndTran(SQLSMALLINT nHandleType,SQLHANDLE nHandle,SQLSMALLINT nCompletionType)16 SQLRETURN  SQLEndTran(       SQLSMALLINT         nHandleType,
17                              SQLHANDLE           nHandle,
18                              SQLSMALLINT         nCompletionType
19                      )
20 {
21 
22     return SQL_ERROR;
23 }
24 
25 
26