├── .gitignore ├── License.txt ├── ODBC 4.0 ├── bin │ ├── win32 │ │ ├── ODBC32.dll │ │ ├── ODBC32.pdb │ │ ├── ODBCCP32.dll │ │ ├── ODBCCP32.pdb │ │ ├── ODBCINT.dll │ │ ├── ODBCTRAC.dll │ │ └── ODBCTRAC.pdb │ └── x64 │ │ ├── ODBC32.dll │ │ ├── ODBC32.pdb │ │ ├── ODBCCP32.dll │ │ ├── ODBCCP32.pdb │ │ ├── ODBCINT.dll │ │ ├── ODBCTRAC.dll │ │ └── ODBCTRAC.pdb ├── inc │ ├── sql.h │ ├── sqlext.h │ ├── sqltypes.h │ └── sqlucode.h └── lib │ ├── win32 │ ├── ODBC32.lib │ ├── ODBCCP32.lib │ └── ODBCTRAC.lib │ └── x64 │ ├── ODBC32.lib │ ├── ODBCCP32.lib │ └── ODBCTRAC.lib ├── README.md ├── SECURITY.md └── src ├── License.txt ├── gatortst ├── ansi │ ├── gtrtst32.def │ ├── makefile │ └── sources ├── autotest.bmp ├── buildchk.wrn ├── commtest.c ├── commtest.h ├── dirs ├── dllpick.c ├── dllpick.h ├── file.c ├── file.h ├── gatortst.c ├── gatortst.h ├── gatortst.rc ├── gatortst.sln ├── gatortst.vcxproj ├── gatortst.vcxproj.filters ├── group.bmp ├── grppick.c ├── grppick.h ├── gtrhdrs.h ├── minus.bmp ├── plus.bmp ├── runtest.c ├── runtest.h ├── sources.inc ├── srcpick.c ├── srcpick.h ├── testcase.bmp ├── udl.c ├── udl.h └── unicode │ ├── gtrts32w.def │ ├── makefile │ └── sources ├── help ├── odbc.chi ├── odbc.chm ├── odbctest.chi └── odbctest.chm ├── include ├── autotest.h ├── bitarray.h ├── odbcss.h ├── odbcver.h ├── portable.h ├── standard.h └── version.h └── odbctest ├── ODBCTest.sln ├── ODBCTest.vcxproj ├── ODBCTest.vcxproj.filters ├── about.bmp ├── about16.bmp ├── about32.bmp ├── ansi ├── makefile └── sources ├── async.bmp ├── bigint.c ├── bigint.h ├── blddata.c ├── blddata.h ├── buttons.bmp ├── connect.ico ├── connwin.c ├── connwin.h ├── dirs ├── disabled.bmp ├── dlgbldr.c ├── dlgbldr.h ├── dlgdfts.h ├── dlgmngr.c ├── dlgmngr.h ├── dlgparms.c ├── dlgparms.h ├── dlgtmplt.c ├── dlgtmplt.h ├── dlgtools.c ├── dlgtools.h ├── enabled.bmp ├── fhattr.c ├── fhbind.c ├── fhcatl.c ├── fhconn.c ├── fhdesc.c ├── fhdiag.c ├── fhenv.c ├── fhenv.h ├── fhheader.h ├── fhhndl.c ├── fhinst.c ├── fhinst.h ├── fhlocatr.c ├── fhmisc.c ├── fhrslt.c ├── fhstmt.c ├── file.h ├── fileio.c ├── fileio.h ├── funchndl.h ├── gator.ico ├── gator.rc ├── gator32.def ├── gator32.ico ├── gatortst.h ├── globals.c ├── globals.h ├── gtrcomm.c ├── gtrcomm.h ├── handles.h ├── main.c ├── mem.c ├── mem.h ├── menus.h ├── options.h ├── optwin.c ├── outwin.c ├── outwin.h ├── outwin.ico ├── paramidx.h ├── picktype.c ├── picktype.h ├── pressed.bmp ├── resource.h ├── rsltwin.c ├── rsltwin.h ├── rsltwin.ico ├── runtest.c ├── runtest.h ├── sources.inc ├── statbar.c ├── statbar.h ├── strings.h ├── szserver ├── table.c ├── table.h ├── toolbar.c ├── toolbar.h ├── unicode ├── makefile └── sources └── usrwndp.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/License.txt -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBC32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBC32.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBC32.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBC32.pdb -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBCCP32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBCCP32.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBCCP32.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBCCP32.pdb -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBCINT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBCINT.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBCTRAC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBCTRAC.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/win32/ODBCTRAC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/win32/ODBCTRAC.pdb -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBC32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBC32.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBC32.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBC32.pdb -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBCCP32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBCCP32.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBCCP32.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBCCP32.pdb -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBCINT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBCINT.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBCTRAC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBCTRAC.dll -------------------------------------------------------------------------------- /ODBC 4.0/bin/x64/ODBCTRAC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/bin/x64/ODBCTRAC.pdb -------------------------------------------------------------------------------- /ODBC 4.0/inc/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/inc/sql.h -------------------------------------------------------------------------------- /ODBC 4.0/inc/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/inc/sqlext.h -------------------------------------------------------------------------------- /ODBC 4.0/inc/sqltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/inc/sqltypes.h -------------------------------------------------------------------------------- /ODBC 4.0/inc/sqlucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/inc/sqlucode.h -------------------------------------------------------------------------------- /ODBC 4.0/lib/win32/ODBC32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/lib/win32/ODBC32.lib -------------------------------------------------------------------------------- /ODBC 4.0/lib/win32/ODBCCP32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/lib/win32/ODBCCP32.lib -------------------------------------------------------------------------------- /ODBC 4.0/lib/win32/ODBCTRAC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/lib/win32/ODBCTRAC.lib -------------------------------------------------------------------------------- /ODBC 4.0/lib/x64/ODBC32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/lib/x64/ODBC32.lib -------------------------------------------------------------------------------- /ODBC 4.0/lib/x64/ODBCCP32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/lib/x64/ODBCCP32.lib -------------------------------------------------------------------------------- /ODBC 4.0/lib/x64/ODBCTRAC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/ODBC 4.0/lib/x64/ODBCTRAC.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/SECURITY.md -------------------------------------------------------------------------------- /src/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/License.txt -------------------------------------------------------------------------------- /src/gatortst/ansi/gtrtst32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/ansi/gtrtst32.def -------------------------------------------------------------------------------- /src/gatortst/ansi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/ansi/makefile -------------------------------------------------------------------------------- /src/gatortst/ansi/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/ansi/sources -------------------------------------------------------------------------------- /src/gatortst/autotest.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/autotest.bmp -------------------------------------------------------------------------------- /src/gatortst/buildchk.wrn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/buildchk.wrn -------------------------------------------------------------------------------- /src/gatortst/commtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/commtest.c -------------------------------------------------------------------------------- /src/gatortst/commtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/commtest.h -------------------------------------------------------------------------------- /src/gatortst/dirs: -------------------------------------------------------------------------------- 1 | DIRS=ansi unicode 2 | -------------------------------------------------------------------------------- /src/gatortst/dllpick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/dllpick.c -------------------------------------------------------------------------------- /src/gatortst/dllpick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/dllpick.h -------------------------------------------------------------------------------- /src/gatortst/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/file.c -------------------------------------------------------------------------------- /src/gatortst/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/file.h -------------------------------------------------------------------------------- /src/gatortst/gatortst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gatortst.c -------------------------------------------------------------------------------- /src/gatortst/gatortst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gatortst.h -------------------------------------------------------------------------------- /src/gatortst/gatortst.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gatortst.rc -------------------------------------------------------------------------------- /src/gatortst/gatortst.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gatortst.sln -------------------------------------------------------------------------------- /src/gatortst/gatortst.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gatortst.vcxproj -------------------------------------------------------------------------------- /src/gatortst/gatortst.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gatortst.vcxproj.filters -------------------------------------------------------------------------------- /src/gatortst/group.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/group.bmp -------------------------------------------------------------------------------- /src/gatortst/grppick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/grppick.c -------------------------------------------------------------------------------- /src/gatortst/grppick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/grppick.h -------------------------------------------------------------------------------- /src/gatortst/gtrhdrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/gtrhdrs.h -------------------------------------------------------------------------------- /src/gatortst/minus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/minus.bmp -------------------------------------------------------------------------------- /src/gatortst/plus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/plus.bmp -------------------------------------------------------------------------------- /src/gatortst/runtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/runtest.c -------------------------------------------------------------------------------- /src/gatortst/runtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/runtest.h -------------------------------------------------------------------------------- /src/gatortst/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/sources.inc -------------------------------------------------------------------------------- /src/gatortst/srcpick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/srcpick.c -------------------------------------------------------------------------------- /src/gatortst/srcpick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/srcpick.h -------------------------------------------------------------------------------- /src/gatortst/testcase.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/testcase.bmp -------------------------------------------------------------------------------- /src/gatortst/udl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/udl.c -------------------------------------------------------------------------------- /src/gatortst/udl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/udl.h -------------------------------------------------------------------------------- /src/gatortst/unicode/gtrts32w.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/unicode/gtrts32w.def -------------------------------------------------------------------------------- /src/gatortst/unicode/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/unicode/makefile -------------------------------------------------------------------------------- /src/gatortst/unicode/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/gatortst/unicode/sources -------------------------------------------------------------------------------- /src/help/odbc.chi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/help/odbc.chi -------------------------------------------------------------------------------- /src/help/odbc.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/help/odbc.chm -------------------------------------------------------------------------------- /src/help/odbctest.chi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/help/odbctest.chi -------------------------------------------------------------------------------- /src/help/odbctest.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/help/odbctest.chm -------------------------------------------------------------------------------- /src/include/autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/autotest.h -------------------------------------------------------------------------------- /src/include/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/bitarray.h -------------------------------------------------------------------------------- /src/include/odbcss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/odbcss.h -------------------------------------------------------------------------------- /src/include/odbcver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/odbcver.h -------------------------------------------------------------------------------- /src/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/portable.h -------------------------------------------------------------------------------- /src/include/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/standard.h -------------------------------------------------------------------------------- /src/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/include/version.h -------------------------------------------------------------------------------- /src/odbctest/ODBCTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/ODBCTest.sln -------------------------------------------------------------------------------- /src/odbctest/ODBCTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/ODBCTest.vcxproj -------------------------------------------------------------------------------- /src/odbctest/ODBCTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/ODBCTest.vcxproj.filters -------------------------------------------------------------------------------- /src/odbctest/about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/about.bmp -------------------------------------------------------------------------------- /src/odbctest/about16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/about16.bmp -------------------------------------------------------------------------------- /src/odbctest/about32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/about32.bmp -------------------------------------------------------------------------------- /src/odbctest/ansi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/ansi/makefile -------------------------------------------------------------------------------- /src/odbctest/ansi/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/ansi/sources -------------------------------------------------------------------------------- /src/odbctest/async.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/async.bmp -------------------------------------------------------------------------------- /src/odbctest/bigint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/bigint.c -------------------------------------------------------------------------------- /src/odbctest/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/bigint.h -------------------------------------------------------------------------------- /src/odbctest/blddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/blddata.c -------------------------------------------------------------------------------- /src/odbctest/blddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/blddata.h -------------------------------------------------------------------------------- /src/odbctest/buttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/buttons.bmp -------------------------------------------------------------------------------- /src/odbctest/connect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/connect.ico -------------------------------------------------------------------------------- /src/odbctest/connwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/connwin.c -------------------------------------------------------------------------------- /src/odbctest/connwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/connwin.h -------------------------------------------------------------------------------- /src/odbctest/dirs: -------------------------------------------------------------------------------- 1 | DIRS=ansi unicode 2 | -------------------------------------------------------------------------------- /src/odbctest/disabled.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/disabled.bmp -------------------------------------------------------------------------------- /src/odbctest/dlgbldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgbldr.c -------------------------------------------------------------------------------- /src/odbctest/dlgbldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgbldr.h -------------------------------------------------------------------------------- /src/odbctest/dlgdfts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgdfts.h -------------------------------------------------------------------------------- /src/odbctest/dlgmngr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgmngr.c -------------------------------------------------------------------------------- /src/odbctest/dlgmngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgmngr.h -------------------------------------------------------------------------------- /src/odbctest/dlgparms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgparms.c -------------------------------------------------------------------------------- /src/odbctest/dlgparms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgparms.h -------------------------------------------------------------------------------- /src/odbctest/dlgtmplt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgtmplt.c -------------------------------------------------------------------------------- /src/odbctest/dlgtmplt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgtmplt.h -------------------------------------------------------------------------------- /src/odbctest/dlgtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgtools.c -------------------------------------------------------------------------------- /src/odbctest/dlgtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/dlgtools.h -------------------------------------------------------------------------------- /src/odbctest/enabled.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/enabled.bmp -------------------------------------------------------------------------------- /src/odbctest/fhattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhattr.c -------------------------------------------------------------------------------- /src/odbctest/fhbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhbind.c -------------------------------------------------------------------------------- /src/odbctest/fhcatl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhcatl.c -------------------------------------------------------------------------------- /src/odbctest/fhconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhconn.c -------------------------------------------------------------------------------- /src/odbctest/fhdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhdesc.c -------------------------------------------------------------------------------- /src/odbctest/fhdiag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhdiag.c -------------------------------------------------------------------------------- /src/odbctest/fhenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhenv.c -------------------------------------------------------------------------------- /src/odbctest/fhenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhenv.h -------------------------------------------------------------------------------- /src/odbctest/fhheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhheader.h -------------------------------------------------------------------------------- /src/odbctest/fhhndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhhndl.c -------------------------------------------------------------------------------- /src/odbctest/fhinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhinst.c -------------------------------------------------------------------------------- /src/odbctest/fhinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhinst.h -------------------------------------------------------------------------------- /src/odbctest/fhlocatr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhlocatr.c -------------------------------------------------------------------------------- /src/odbctest/fhmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhmisc.c -------------------------------------------------------------------------------- /src/odbctest/fhrslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhrslt.c -------------------------------------------------------------------------------- /src/odbctest/fhstmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fhstmt.c -------------------------------------------------------------------------------- /src/odbctest/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/file.h -------------------------------------------------------------------------------- /src/odbctest/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fileio.c -------------------------------------------------------------------------------- /src/odbctest/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/fileio.h -------------------------------------------------------------------------------- /src/odbctest/funchndl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/funchndl.h -------------------------------------------------------------------------------- /src/odbctest/gator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gator.ico -------------------------------------------------------------------------------- /src/odbctest/gator.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gator.rc -------------------------------------------------------------------------------- /src/odbctest/gator32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gator32.def -------------------------------------------------------------------------------- /src/odbctest/gator32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gator32.ico -------------------------------------------------------------------------------- /src/odbctest/gatortst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gatortst.h -------------------------------------------------------------------------------- /src/odbctest/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/globals.c -------------------------------------------------------------------------------- /src/odbctest/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/globals.h -------------------------------------------------------------------------------- /src/odbctest/gtrcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gtrcomm.c -------------------------------------------------------------------------------- /src/odbctest/gtrcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/gtrcomm.h -------------------------------------------------------------------------------- /src/odbctest/handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/handles.h -------------------------------------------------------------------------------- /src/odbctest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/main.c -------------------------------------------------------------------------------- /src/odbctest/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/mem.c -------------------------------------------------------------------------------- /src/odbctest/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/mem.h -------------------------------------------------------------------------------- /src/odbctest/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/menus.h -------------------------------------------------------------------------------- /src/odbctest/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/options.h -------------------------------------------------------------------------------- /src/odbctest/optwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/optwin.c -------------------------------------------------------------------------------- /src/odbctest/outwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/outwin.c -------------------------------------------------------------------------------- /src/odbctest/outwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/outwin.h -------------------------------------------------------------------------------- /src/odbctest/outwin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/outwin.ico -------------------------------------------------------------------------------- /src/odbctest/paramidx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/paramidx.h -------------------------------------------------------------------------------- /src/odbctest/picktype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/picktype.c -------------------------------------------------------------------------------- /src/odbctest/picktype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/picktype.h -------------------------------------------------------------------------------- /src/odbctest/pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/pressed.bmp -------------------------------------------------------------------------------- /src/odbctest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/resource.h -------------------------------------------------------------------------------- /src/odbctest/rsltwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/rsltwin.c -------------------------------------------------------------------------------- /src/odbctest/rsltwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/rsltwin.h -------------------------------------------------------------------------------- /src/odbctest/rsltwin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/rsltwin.ico -------------------------------------------------------------------------------- /src/odbctest/runtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/runtest.c -------------------------------------------------------------------------------- /src/odbctest/runtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/runtest.h -------------------------------------------------------------------------------- /src/odbctest/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/sources.inc -------------------------------------------------------------------------------- /src/odbctest/statbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/statbar.c -------------------------------------------------------------------------------- /src/odbctest/statbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/statbar.h -------------------------------------------------------------------------------- /src/odbctest/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/strings.h -------------------------------------------------------------------------------- /src/odbctest/szserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/szserver -------------------------------------------------------------------------------- /src/odbctest/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/table.c -------------------------------------------------------------------------------- /src/odbctest/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/table.h -------------------------------------------------------------------------------- /src/odbctest/toolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/toolbar.c -------------------------------------------------------------------------------- /src/odbctest/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/toolbar.h -------------------------------------------------------------------------------- /src/odbctest/unicode/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/unicode/makefile -------------------------------------------------------------------------------- /src/odbctest/unicode/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/unicode/sources -------------------------------------------------------------------------------- /src/odbctest/usrwndp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ODBCTest/HEAD/src/odbctest/usrwndp.c --------------------------------------------------------------------------------