diff options
| author | Heikki Linnakangas | 2014-03-11 11:15:55 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2014-03-11 11:16:39 +0000 |
| commit | f289c753f4b68b1a1c9325cce9b7079c037979ed (patch) | |
| tree | 81ff61d3e2eae74af71e3673741a962591b29dd7 /execute.c | |
| parent | e441557121bce69e394c33f6b5580ed18593062c (diff) | |
More whitespace cleanup.
Make whitespace and indentation more consistent in SQL_API function
declarations.
Diffstat (limited to 'execute.c')
| -rw-r--r-- | execute.c | 18 |
1 files changed, 6 insertions, 12 deletions
@@ -146,8 +146,7 @@ inolog("SQLPrepare return=%d\n", retval); /* Performs the equivalent of SQLPrepare, followed by SQLExecute. */ RETCODE SQL_API -PGAPI_ExecDirect( - HSTMT hstmt, +PGAPI_ExecDirect(HSTMT hstmt, const SQLCHAR FAR * szSqlStr, SQLINTEGER cbSqlStr, UWORD flag) @@ -1177,8 +1176,7 @@ mylog("retval=%d\n", retval); RETCODE SQL_API -PGAPI_Transact( - HENV henv, +PGAPI_Transact(HENV henv, HDBC hdbc, SQLUSMALLINT fType) { @@ -1242,8 +1240,7 @@ PGAPI_Transact( RETCODE SQL_API -PGAPI_Cancel( - HSTMT hstmt) /* Statement to cancel. */ +PGAPI_Cancel(HSTMT hstmt) /* Statement to cancel. */ { CSTR func = "PGAPI_Cancel"; StatementClass *stmt = (StatementClass *) hstmt, *estmt; @@ -1356,8 +1353,7 @@ cleanup: * observing buffer limits and truncation. */ RETCODE SQL_API -PGAPI_NativeSql( - HDBC hdbc, +PGAPI_NativeSql(HDBC hdbc, const SQLCHAR FAR * szSqlStrIn, SQLINTEGER cbSqlStrIn, SQLCHAR FAR * szSqlStr, @@ -1408,8 +1404,7 @@ PGAPI_NativeSql( * Used in conjuction with SQLPutData. */ RETCODE SQL_API -PGAPI_ParamData( - HSTMT hstmt, +PGAPI_ParamData(HSTMT hstmt, PTR FAR * prgbValue) { CSTR func = "PGAPI_ParamData"; @@ -1558,8 +1553,7 @@ cleanup: * Used in conjunction with SQLParamData. */ RETCODE SQL_API -PGAPI_PutData( - HSTMT hstmt, +PGAPI_PutData(HSTMT hstmt, PTR rgbValue, SQLLEN cbValue) { |
