diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-02-11 05:58:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-02-11 05:58:41 +0000 |
commit | 3152ef63a624cfecf1889068db49397a0a8e035e (patch) | |
tree | 655bf607ee604c76e34f323ee841d4d3a40407cb /src/interfaces/odbc/execute.c | |
parent | a952c79b238e7c5d40a62c14d0ceeabffb218c00 (diff) | |
download | postgresql-3152ef63a624cfecf1889068db49397a0a8e035e.tar.gz postgresql-3152ef63a624cfecf1889068db49397a0a8e035e.zip |
Source alignment cleanups.
Diffstat (limited to 'src/interfaces/odbc/execute.c')
-rw-r--r-- | src/interfaces/odbc/execute.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/interfaces/odbc/execute.c b/src/interfaces/odbc/execute.c index b4ef4a59753..ac7f2ee30f4 100644 --- a/src/interfaces/odbc/execute.c +++ b/src/interfaces/odbc/execute.c @@ -39,7 +39,7 @@ extern GLOBAL_VALUES globals; /* Perform a Prepare on the SQL statement */ -RETCODE SQL_API +RETCODE SQL_API SQLPrepare(HSTMT hstmt, UCHAR FAR *szSqlStr, SDWORD cbSqlStr) @@ -133,7 +133,7 @@ SQLPrepare(HSTMT hstmt, /* Performs the equivalent of SQLPrepare, followed by SQLExecute. */ -RETCODE SQL_API +RETCODE SQL_API SQLExecDirect( HSTMT hstmt, UCHAR FAR *szSqlStr, @@ -195,7 +195,7 @@ SQLExecDirect( } /* Execute a prepared SQL statement */ -RETCODE SQL_API +RETCODE SQL_API SQLExecute( HSTMT hstmt) { @@ -326,7 +326,7 @@ SQLExecute( /* - - - - - - - - - */ -RETCODE SQL_API +RETCODE SQL_API SQLTransact( HENV henv, HDBC hdbc, @@ -408,7 +408,7 @@ SQLTransact( /* - - - - - - - - - */ -RETCODE SQL_API +RETCODE SQL_API SQLCancel( HSTMT hstmt) /* Statement to cancel. */ { @@ -486,7 +486,7 @@ SQLCancel( /* Returns the SQL string as modified by the driver. */ /* Currently, just copy the input string without modification */ /* observing buffer limits and truncation. */ -RETCODE SQL_API +RETCODE SQL_API SQLNativeSql( HDBC hdbc, UCHAR FAR *szSqlStrIn, @@ -540,7 +540,7 @@ SQLNativeSql( /* Supplies parameter data at execution time. Used in conjuction with */ /* SQLPutData. */ -RETCODE SQL_API +RETCODE SQL_API SQLParamData( HSTMT hstmt, PTR FAR *prgbValue) @@ -651,7 +651,7 @@ SQLParamData( /* Supplies parameter data at execution time. Used in conjunction with */ /* SQLParamData. */ -RETCODE SQL_API +RETCODE SQL_API SQLPutData( HSTMT hstmt, PTR rgbValue, |