diff options
author | Byron Nikolaidis <byronn@insightdist.com> | 1998-12-29 14:59:30 +0000 |
---|---|---|
committer | Byron Nikolaidis <byronn@insightdist.com> | 1998-12-29 14:59:30 +0000 |
commit | 550de5db2c36badc508d8d6116643fef994b9c38 (patch) | |
tree | 31f40f1b71cd1b89f0a6a2e6a1dcf27f8cce54ae /src/interfaces/odbc/execute.c | |
parent | a75f2d21a8366aece67b8aa144a8644f6195e75f (diff) |
Minor fixes to compile on unix for v6-40-0002
Diffstat (limited to 'src/interfaces/odbc/execute.c')
-rw-r--r-- | src/interfaces/odbc/execute.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/odbc/execute.c b/src/interfaces/odbc/execute.c index cad5a5ca15f..59cfa450a10 100644 --- a/src/interfaces/odbc/execute.c +++ b/src/interfaces/odbc/execute.c @@ -372,8 +372,10 @@ RETCODE SQL_API SQLCancel( static char *func="SQLCancel"; StatementClass *stmt = (StatementClass *) hstmt; RETCODE result; +#ifdef WIN32 HMODULE hmodule; FARPROC addr; +#endif mylog( "%s: entering...\n", func); |