]> sourceware.org Git - newlib-cygwin.git/log
newlib-cygwin.git
23 years ago * shortcut.c: Change symlink condition.
Corinna Vinschen [Sun, 25 Feb 2001 09:19:35 +0000 (09:19 +0000)]
    * shortcut.c: Change symlink condition.

23 years agoCYGWIN32 -> CYGWIN.
Christopher Faylor [Sat, 24 Feb 2001 23:25:30 +0000 (23:25 +0000)]
CYGWIN32 -> CYGWIN.

23 years ago * mmap.cc (fhandler_disk_file::mmap): Use `addr' correctly.
Corinna Vinschen [Fri, 23 Feb 2001 09:49:19 +0000 (09:49 +0000)]
    * mmap.cc (fhandler_disk_file::mmap): Use `addr' correctly.
* fhandler_mem.cc (fhandler_dev_mem::mmap): Ditto.

23 years ago2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Thu, 22 Feb 2001 22:26:34 +0000 (22:26 +0000)]
2001-02-22  Jeff Johnston <jjohnstn@redhat.com>

        * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
        longer valid.

23 years ago2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Thu, 22 Feb 2001 22:23:23 +0000 (22:23 +0000)]
2001-02-22  Jeff Johnston  <jjohnstn@redhat.com>

        * mn10200/access.c: With DJ Delorie's permission, this code is
        now freely modifiable with no reference to "copying.dj".
        * mn10300/access.c: Ditto.

23 years ago2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Thu, 22 Feb 2001 22:12:43 +0000 (22:12 +0000)]
2001-02-22  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/machine/setjmp-dj.h: With DJ Delorie's permission,
        changed the copyright information to allow free modification of the
        file with no reference to "copying.dj".
        * libc/include/sys/stat-dj.h: Ditto.
        * libc/machine/i386/setjmp.S: Ditto.
        * libc/sys/h8300hms/sys/file.h: Ditto.
        * libc/sys/sysmec/access.c: Ditto.
        * libc/sys/sysnecv850/access.c: Ditto.
        * libc/stdio/mktemp.c: Fixed typo for the word copyright.
        * libc/stdlib/getenv_r.c: Ditto.
        * libc/stdlib/putenv_r.c: Ditto.
        * libc/stdlib/setenv_r.c: Ditto.
        * libc/stdlib/getenv.c: Removed DJ reference since any possible
        modifications will now be in the _r version of this file.
        * libc/stdlib/putenv.c: Ditto.
        * libc/stdlib/setenv.c: Ditto.
        * libc/sys/go32/copying.dj: Removed DJ's address which is no longer
        valid.  Added a reference to DJ's web page that contains his address.
        * libc/sys/go32/*.s: Removed references to DJ's old address.
        * libc/sys/go32/*.c: Ditto.
        * libc/sys/go32/*.h: Ditto.
        * libc/sys/go32/*.S: Ditto.
        * libc/sys/go32/sys/*.h: Ditto.

23 years ago * path.cc (symlink): Keep relative paths relative in the DOS
Corinna Vinschen [Thu, 22 Feb 2001 16:26:13 +0000 (16:26 +0000)]
    * path.cc (symlink): Keep relative paths relative in the DOS
        path inside of a shortcut. If that's impossible or the target
        path is already absolute save an absolute path.

23 years ago * path.cc (symlink): Keep relative paths relative in the DOS
Corinna Vinschen [Thu, 22 Feb 2001 16:14:59 +0000 (16:14 +0000)]
    * path.cc (symlink): Keep relative paths relative in the DOS
        path inside of a shortcut. If that's impossible for some
        reason, save an absolute path.

23 years ago * cygerrno.h: Revert previous patch.
Corinna Vinschen [Thu, 22 Feb 2001 14:51:16 +0000 (14:51 +0000)]
    * cygerrno.h: Revert previous patch.
        * errno.cc: Ditto.
        * dir.cc: Eliminate `dir_suffixes'.
        (opendir): Remove usage of `dir_suffixes'.
        (rmdir): Ditto.
        * fhandler.cc (fhandler_disk_file::open): Remove usage of
        `inner_suffixes'.
        * path.cc: Rename `inner_suffixes' to `lnk_suffixes'.
        (path_conv::check): Remove usage of `inner_suffixes'.
        (symlink): Ditto.
        (symlink_info::check): Handle checking for `.lnk' in path_conv
        exclusively here.
        (chdir): Remove usage of `dir_suffixes'.
        * shortcut.c: Eliminate debug_printf lines.
        (check_shortcut): Don't set error except on failing ReadFile.
        * spawn.cc: Remove ".lnk" from `std_suffixes'.
        * syscalls.cc (_unlink): Remove usage of `inner_suffixes'.
        Remove ".lnk" from `stat_suffixes'.
        (_rename): Add check for renaming a symlink to keep the ".lnk"
        suffix after renaming.

23 years ago * shortcut.c: New file. Provides a C interface to reading of
Corinna Vinschen [Thu, 22 Feb 2001 12:56:36 +0000 (12:56 +0000)]
    * shortcut.c: New file. Provides a C interface to reading of
        Windows shortcuts to avoid compiler flag `-fvtable-thunks'.
        * shortcut.h: Ditto.
        * Makefile.in: Add shortcut.o to DLL_OFILES.
        * cygerrno.h: Provide a C interface to `geterrno_from_win_error' for
        using in shortcut.c.
        * errno.cc (geterrno_from_win_error): Define as extern "C".
        * path.cc (struct symlink_info): Remove methods `check_shortcut' and
        `check_sysfile'.
        (shortcut_header): Move to shortcut.c.
        (shortcut_initalized): Ditto.
        (create_shortcut_header): Ditto.
        (cmp_shortcut_header): Ditto.
        (symlink_info::check_shortcut): Ditto. Reorganize as a plain C function.
        (symlink_info::check_sysfile): Redefine as a global function using the
        same parameter list as `check_shortcut' for clearness.
        (symlink_info::check): Change parameter list for calls to
        `check_shortcut' and `check_sysfile'.

23 years ago * Makefile.common: Revert previous change.
Corinna Vinschen [Thu, 22 Feb 2001 12:37:32 +0000 (12:37 +0000)]
    * Makefile.common: Revert previous change.

23 years ago * fhandler.cc (fhandler_disk_file::open): Use `inner_suffixes' when
Corinna Vinschen [Thu, 22 Feb 2001 11:06:25 +0000 (11:06 +0000)]
    * fhandler.cc (fhandler_disk_file::open): Use `inner_suffixes' when
        resolving real_path.
        * path.cc (symlink): Ditto for win32_topath.

23 years ago2001-02-21 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Wed, 21 Feb 2001 23:11:06 +0000 (23:11 +0000)]
2001-02-21  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/stdio/fdopen.c (fdopen): Protect calls to _fcntl() with
        HAVE_FCNTL flag check.
        * configure.host: Define HAVE_FCNTL for Cygwin, go32, RTEMS, sparc64,
        powerpcle, x86 netware, x86 sco, x86 Linux and Vxworks.

23 years agoAdd copyright year 2001
Corinna Vinschen [Wed, 21 Feb 2001 22:59:11 +0000 (22:59 +0000)]
Add copyright year 2001

23 years ago * Makefile.in: Add `-lshell32 -luuid' to link pass for new-cygwin1.dll.
Corinna Vinschen [Wed, 21 Feb 2001 21:49:37 +0000 (21:49 +0000)]
    * Makefile.in: Add `-lshell32 -luuid' to link pass for new-cygwin1.dll.
        * autoload.cc: Add LoadDLLinitfunc for ole32.dll.
        Add LoadDLLfuncEx statements for CoInitialize@4, CoUninitialize@0
        and CoCreateInstance@20.
        * dir.cc (dir_suffixes): New datastructure.
        (readdir): Check for R/O *.lnk files to hide the suffix.
        (opendir): Use `dir_suffixes' in path conversion.
        (rmdir): Ditto.
        * fhandler.cc (fhandler_disk_file::fstat): Add S_IFLNK flag
        before calling `get_file_attribute'. Take FILE_ATTRIBUTE_READONLY
        into account only if the file is no symlink.
        * path.cc (inner_suffixes): New datastructure.
        (SYMLINKATTR): Eliminated.
        (path_conv::check): Use `inner_suffixes' on inner path components.
        (shortcut_header): New global static variable.
        (shortcut_initalized): Ditto.
        (create_shortcut_header): New function.
        (cmp_shortcut_header): Ditto.
        (symlink): Create symlinks by creating windows shortcuts. Preserve
        the old code.
        (symlink_info::check_shortcut): New method.
        (symlink_info::check_sysfile): Ditto.
        (symlink_info::check): Check for shortcuts. Move code reading
        old system attribute symlinks into symlink_info::check_sysfile().
        (chdir): Use `dir_suffixes' in path conversion.
        * security.cc (get_file_attribute): Check for S_IFLNK flag.
        Force 0777 permissions then.
        * spawn.cc (std_suffixes): Add ".lnk" suffix.
        * syscalls.cc (_unlink): Use `inner_suffixes' in path conversion.
        Check for shortcut symlinks to eliminate R/O attribute before
        calling DeleteFile().
        (stat_suffixes): Add ".lnk" suffix.
        (stat_worker): Force 0777 permissions if file is a symlink.

23 years ago * Makefile.common: Add `-fvtable-thunks' to COMPILE_CXX.
Corinna Vinschen [Wed, 21 Feb 2001 21:46:47 +0000 (21:46 +0000)]
    * Makefile.common: Add `-fvtable-thunks' to COMPILE_CXX.

23 years ago * include/w32api.h: (_W32API_VERSION): Remove.
Earnie Boyd [Wed, 21 Feb 2001 21:44:59 +0000 (21:44 +0000)]
* include/w32api.h: (_W32API_VERSION): Remove.
(__W32API_VERSION): Add.
(__W32API_MAJOR_VERSION): Ditto.
(__W32API_MINOR_VERSION): Ditto.

23 years ago * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
Earnie Boyd [Wed, 21 Feb 2001 21:37:18 +0000 (21:37 +0000)]
* include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
(StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
* include/winuser.h (struct tagMOUSEKEYS): Define new structure.
* include/winerror.h (NTE_*): Add CryptoAPI error codes.

23 years ago * include/mswsock.h: New file.
Earnie Boyd [Wed, 21 Feb 2001 20:40:47 +0000 (20:40 +0000)]
* include/mswsock.h: New file.
* include/ws2tcpip.h: New file.
* include/winsock.h (IPPROTO_IGMP): New define.
(IPPROTO_GGP): Correct value.
(SO_* macros): Remove mswsock defines.
(TCP_BSDURGENT): Likewise.
(IP_* macros): Add comment warning of WinSock2 incompatibility
(WSARecvEx): Remove mswsock prototype.
(TransmitFile): Likewise.
(AcceptEx): Likewise.
(GetAcceptExSockaddrs): Likewise.
(struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
(#include <mswsock.h>): Add directive and explanatory comment
* include/winsock2.h (header guard): add guard for  _WINSOCK_H
(_WINSOCK_H): Define to prevent later inclusion of winsock.h
(#include <winsock.h>): Replace directive with winsock.h file content
The following changes apply to the merged file:
(FD_SET): Keep winsock2.h definition, delete winsock.h definition
(SOMAXCONN): Likewise
(#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
(IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
in ws2tcpip.h)
(struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
(FD_*_BIT and FD_* defines): Place together and extend to
FD_MAX_EVENTS 10
(AF* defines): Extend to AF_MAX 10
(WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
(WSAUnhookBlockingHook): Likewise.
(WSASetBlockingHook): Likewise.
(WSACancelBlockingCall): Likewise.
(WSAEINPROGRESS): Comment as not raised in WinSock2.
(#include <mswsock.h>): Delete directive inherited from winsock.h
(WSA_QOS* defines): Add QualityOfService error codes.
(SIO_* defines): Add new macros
* include/ipexport.h (IP_STATUS flags): Add definitions.
(IP_FLAG_DF): Likewise.
(IP_OPT_* ): Likewise.
(struct ip_option_information): Likewise.
(struct icmp_echo_reply): Likewise.

23 years ago * include/tchar.h: (__TEXT): Remove undef.
Earnie Boyd [Wed, 21 Feb 2001 19:33:42 +0000 (19:33 +0000)]
* include/tchar.h: (__TEXT): Remove undef.
(_TEXT): Ditto.
(_T): Ditto.

23 years ago * include/commctrl.h: Revert TEXT change.
Earnie Boyd [Wed, 21 Feb 2001 19:31:54 +0000 (19:31 +0000)]
* include/commctrl.h: Revert TEXT change.
* include/lmalert.h: Ditto.
* include/lmcons.h: Ditto.
* include/lmsname.h: Ditto.
* include/lmsvc.h: Ditto.
* include/ntsecapi.h: Ditto.
* include/oledlg.h: Ditto.
* include/ras.h: Ditto.
* include/regstr.h: Ditto.
* include/richedit.h: Ditto.
* include/wininet.h: Ditto.
* include/winnt.h: Ditto.

23 years ago* sigproc.cc (getsem): Make semaphore always non-inheritable.
Egor Duda [Wed, 21 Feb 2001 11:40:22 +0000 (11:40 +0000)]
* sigproc.cc (getsem): Make semaphore always non-inheritable.

23 years ago* dcrt0.cc (locale_init): Remove.
Christopher Faylor [Tue, 20 Feb 2001 03:28:01 +0000 (03:28 +0000)]
* dcrt0.cc (locale_init): Remove.

23 years ago* cygwin.din: Export rand48 functions.
Christopher Faylor [Tue, 20 Feb 2001 02:53:55 +0000 (02:53 +0000)]
* cygwin.din: Export rand48 functions.
* thread.cc (MTinterface::Init): Remove the initialization of `reent_data'.
* dcrt0.cc: Add the initalizer to the declaration of `reent_data'.
* include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 35.

23 years agoAdd PDP-11 support
Nick Clifton [Sun, 18 Feb 2001 23:33:07 +0000 (23:33 +0000)]
Add PDP-11 support

23 years agoAllow configuration of texinfo for Cygwin hosts.
Nick Clifton [Sat, 17 Feb 2001 00:53:44 +0000 (00:53 +0000)]
Allow configuration of texinfo for Cygwin hosts.

23 years ago* signal.cc (signal): Prohibit setting handlers for SIGKILL and SIGSTOP
Egor Duda [Fri, 16 Feb 2001 18:49:20 +0000 (18:49 +0000)]
* signal.cc (signal): Prohibit setting handlers for SIGKILL and SIGSTOP
* signal.cc (sigaction): Ditto
* syscalls.cc (_lseek): Return EINVAL on invalid input

23 years ago * include/w32api.h: Oops forgot to cvs add this.
Earnie Boyd [Thu, 15 Feb 2001 17:28:40 +0000 (17:28 +0000)]
* include/w32api.h: Oops forgot to cvs add this.

23 years ago * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
Earnie Boyd [Thu, 15 Feb 2001 17:26:22 +0000 (17:26 +0000)]
* include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
* include/lmalert.h: Ditto.
* include/lmcons.h: Ditto.
* include/lmsname.h: Ditto.
* include/lmsvc.h: Ditto.
* include/ntsecapi.h: Ditto.
* include/oledlg.h: Ditto.
* include/ras.h: Ditto.
* include/regstr.h: Ditto.
* include/richedit.h: Ditto.
* include/wininet.h: Ditto.
* include/w32api.h: New File.

23 years ago* libc/include/sys/signal.h: Always include sys/types.h under Cygwin.
Christopher Faylor [Thu, 15 Feb 2001 06:42:35 +0000 (06:42 +0000)]
* libc/include/sys/signal.h: Always include sys/types.h under Cygwin.

23 years ago2001-02-14 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
Jeff Johnston [Thu, 15 Feb 2001 02:04:55 +0000 (02:04 +0000)]
2001-02-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>

        * libc/include/stdlib.h: Add declarations of rand48 functions and
        their reentrant versions.
        * libc/include/sys/reent.h: Move macros from rand48.h. Add
        struct _rand48 for shared parameters of rand48 functions.
        (struct _reent): Add a variable _r48 of struct _rand48.
        (_REENT_INIT): Add _r48 initialization.
        * libc/stdlib/Makefile.am (lib_a_SOURCES): Add rand48 functions.
        (CHEWOUT_FILES): Add rand48.def.
        * libc/stdlib/Makefile.am: Add dependencies for rand48 functions.
        * libc/stdlib/Makefile.in: Regenerated.
        * libc/stdlib/drand48.c (drand48, _drand48_r): Derived from the
        NetBSD C library.
        * libc/stdlib/erand48.c (erand48, _erand48_r): Ditto.
        * libc/stdlib/jrand48.c (jrand48, _jrand48_r): Ditto.
        * libc/stdlib/lcong48.c (lcong48, _lcong48_r): Ditto.
        * libc/stdlib/lrand48.c (lrand48, _lrand48_r): Ditto.
        * libc/stdlib/mrand48.c (mrand48, _mrand48_r): Ditto.
        * libc/stdlib/nrand48.c (nrand48, _nrand48_r): Ditto.
        * libc/stdlib/seed48.c (seed48, _seed48_r): Ditto.
        * libc/stdlib/srand48.c (srand48, _srand48_r): Ditto.
        * libc/stdlib/rand48.c (__dorand48): Ditto.
        * libc/stdlib/rand48.h: Ditto, and modify declarations of global
        parameters into macros referring them in the reentrant structure.

23 years ago* dlfcn.cc (dlopen): Do not call LoadLibrary with a NULL pointer, when the
Christopher Faylor [Wed, 14 Feb 2001 23:45:56 +0000 (23:45 +0000)]
* dlfcn.cc (dlopen): Do not call LoadLibrary with a NULL pointer, when the
library is not found

23 years ago* fhandler_console.cc (fhandler_console::char_command): Ignore unknown
Christopher Faylor [Wed, 14 Feb 2001 22:00:09 +0000 (22:00 +0000)]
* fhandler_console.cc (fhandler_console::char_command): Ignore unknown
rendition codes in \033[xx;yym control sequences

23 years ago * include/shlobj.h: Add missing SLR_* flags.
Corinna Vinschen [Tue, 13 Feb 2001 21:39:57 +0000 (21:39 +0000)]
    * include/shlobj.h: Add missing SLR_* flags.

23 years ago* include/coff/pe.h: Rename PEP64AOUTHDR to PEPAOUTHDR. Rename
DJ Delorie [Tue, 13 Feb 2001 21:01:44 +0000 (21:01 +0000)]
* include/coff/pe.h: Rename PEP64AOUTHDR to PEPAOUTHDR.  Rename
PEP64AOUTSZ to PEPAOUTSZ.

23 years ago * lib/Makefile.in: (host_alias): Add variable.
Earnie Boyd [Mon, 12 Feb 2001 19:45:33 +0000 (19:45 +0000)]
* lib/Makefile.in: (host_alias): Add variable.
(host_build): Ditto:
(xinstall): Removed
(xinstall-libraries): Ditto.
(xinstall-headers): Ditto.
(xuninstall): Ditto.
(xuninstall-libraries): Ditto.
(xuninstall-headers): Ditto.
* Makefile.in: (host_alias): Add variable.
(build_alias): Ditto.

23 years ago2001-02-12 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Mon, 12 Feb 2001 18:17:17 +0000 (18:17 +0000)]
2001-02-12  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/sys/stat.h: Add mknod for Cygwin now that
        Cygwin definition has correct prototype.

23 years ago * i386.h (i386_optab): SSE integer converison instructions have
Jan Hubicka [Mon, 12 Feb 2001 16:42:49 +0000 (16:42 +0000)]
* i386.h (i386_optab): SSE integer converison instructions have
64bit versions on x86-64.
* i386-dis.c (prefix_user_t): Add 'Y' to SSE ineger converison
instructions.
(putop): Handle 'Y'

23 years agoRemove annoying entry....:-)
Nick Clifton [Sat, 10 Feb 2001 22:30:07 +0000 (22:30 +0000)]
Remove annoying entry....:-)

23 years agoRemove extraneous whitespace
Nick Clifton [Sat, 10 Feb 2001 22:26:55 +0000 (22:26 +0000)]
Remove extraneous whitespace

23 years ago* fork.cc (fork_parent): Return EAGAIN when can't record pid.
Christopher Faylor [Sat, 10 Feb 2001 04:20:52 +0000 (04:20 +0000)]
* fork.cc (fork_parent): Return EAGAIN when can't record pid.
* pinfo.h (pinfo::remember): Return value of call to proc_subproc.
* sigproc.cc (proc_subproc): Return error if can't record pid.

23 years agoAdd s390 support
Nick Clifton [Sat, 10 Feb 2001 00:58:38 +0000 (00:58 +0000)]
Add s390 support

23 years ago* syscalls.cc (mknod): Add valid parameters.
Christopher Faylor [Fri, 9 Feb 2001 17:17:34 +0000 (17:17 +0000)]
* syscalls.cc (mknod): Add valid parameters.

23 years ago2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Fri, 9 Feb 2001 01:01:06 +0000 (01:01 +0000)]
2001-02-08  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/sys/stat.h: Must revert change for mknod
        for CYGWIN until winsup/cygwin/syscalls.cc changes mknod
        prototype.

23 years ago2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Fri, 9 Feb 2001 00:32:43 +0000 (00:32 +0000)]
2001-02-08  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/stdio.h: Revert putw prototype.

23 years ago2001-02-08 Edward M. Lee <tailbert@yahoo.com>
Jeff Johnston [Fri, 9 Feb 2001 00:13:54 +0000 (00:13 +0000)]
2001-02-08  Edward M. Lee  <tailbert@yahoo.com>

        * libc/include/grp.h: add prototype for initgroups.
        * libc/include/stdio.h: fix prototype for putw.
        * libc/include/sys/signal.h: add prototype for killpg.
        * libc/include/sys/stat.h: enable mknod/lstat for CYGWIN.
        * libc/include/sys/unistd.h: add prototypes for getpgid, setpgrp,
        vhangup and remove duplicate sysconf prototype.

23 years ago * mmap.cc (mmap): Check for reusing a mapping only on MAP_SHARED
Corinna Vinschen [Thu, 8 Feb 2001 21:10:45 +0000 (21:10 +0000)]
    * mmap.cc (mmap): Check for reusing a mapping only on MAP_SHARED
        and on MAP_PRIVATE|MAP_ANON in the special case of offset 0.

23 years ago * mmap.cc (class list): Add member `hash'.
Corinna Vinschen [Thu, 8 Feb 2001 21:02:36 +0000 (21:02 +0000)]
    * mmap.cc (class list): Add member `hash'.
        (list::list): Initialize `hash'.
        (list::get_list_by_fd): Use filepath hash value to get the correct
        mapping list if it's not an anonymous mapping.
        (map::add_list): Initialize `hash' with filepath hash value.
        (mmap): Check for reusing a mapping only on MAP_SHARED.

23 years ago* setup2.sgml: Add docs about domain accounts.
DJ Delorie [Thu, 8 Feb 2001 04:12:48 +0000 (04:12 +0000)]
* setup2.sgml: Add docs about domain accounts.

23 years ago* signal.cc (killpg): Correct first argument.
Christopher Faylor [Wed, 7 Feb 2001 23:48:09 +0000 (23:48 +0000)]
* signal.cc (killpg): Correct first argument.

23 years ago * autoload.cc: Add LoadDLLinitfunc for iphlpapi.dll.
Corinna Vinschen [Wed, 7 Feb 2001 22:50:50 +0000 (22:50 +0000)]
    * autoload.cc: Add LoadDLLinitfunc for iphlpapi.dll.
        Add LoadDLLfuncEx statements for GetIfTable@12 and GetIpAddrTable@12.
        * fhandler_socket.cc (fhandler_socket::ioctl): Move variable
        definitions to the beginning of the function to allow better debugging.
        Add handling for SIOCGIFHWADDR, SIOCGIFMETRIC and SIOCGIFMTU.
        * net.cc: Include iphlpapi.h.
        (get_2k_ifconf): Rewritten. Uses IP Helper API now.
        (get_nt_ifconf): Add handling for SIOCGIFHWADDR, SIOCGIFMETRIC
        and SIOCGIFMTU.
        (get_95_ifconf): Ditto. Renamed from `get_9x_ifconf'.
        (get_ifconf): Name loopback `lo' instead of `lo0' as in Linux.
        Add handling for SIOCGIFHWADDR, SIOCGIFMETRIC and SIOCGIFMTU.
        Call `get_95_ifconf' only on Windows 95, `get_nt_ifconf' only
        on Windows NT < Service Pack 3, `get_2k_ifconf otherwise.
        * include/asm/socket.h: Add defines for SIOCGIFHWADDR, SIOCGIFMETRIC
        and SIOCGIFMTU.
        * include/cygwin/if.h: Add `ifr_hwaddr', `ifr_metric' and `ifr_mtu'.
        (struct ifreq): Add `ifru_hwaddr'.

23 years ago2001-02-07 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Wed, 7 Feb 2001 18:11:09 +0000 (18:11 +0000)]
2001-02-07  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/sys/rtems/sys/types.h: Removed.

23 years ago* configure: Output host type to stdout, not stderr.
DJ Delorie [Wed, 7 Feb 2001 01:06:43 +0000 (01:06 +0000)]
* configure: Output host type to stdout, not stderr.

23 years ago2001-01-23 H.J. Lu <hjl@gnu.org>
H.J. Lu [Tue, 6 Feb 2001 19:35:48 +0000 (19:35 +0000)]
2001-01-23  H.J. Lu  <hjl@gnu.org>

* include/coff/pe.h (struct external_PEI_DOS_hdr): New.
(struct external_PEI_IMAGE_hdr): New.

23 years ago2001-02-06 Will Cohen <wcohen@redhat.com>
Jeff Johnston [Tue, 6 Feb 2001 19:17:20 +0000 (19:17 +0000)]
2001-02-06  Will Cohen  <wcohen@redhat.com>

        * rs6000/sim-errno.c (__errno): Removed.
        (_cerror): Use re-entrant version of errno.

23 years ago * syscalls.cc (stat_worker): Add a check for the special case when
Corinna Vinschen [Tue, 6 Feb 2001 14:07:02 +0000 (14:07 +0000)]
    * syscalls.cc (stat_worker): Add a check for the special case when
        a process creates a file using mode 000 using ntsec.

23 years ago2001-02-05 Charles Wilson <cwilson@ece.gatech.edu>
Jeff Johnston [Mon, 5 Feb 2001 21:51:43 +0000 (21:51 +0000)]
2001-02-05  Charles Wilson  <cwilson@ece.gatech.edu>

        * libc/include/locale.h: add LC_MESSAGES definition

23 years ago * fhandler.cc (fhandler_base::open): Always add GENERIC_READ access
Corinna Vinschen [Mon, 5 Feb 2001 16:10:06 +0000 (16:10 +0000)]
    * fhandler.cc (fhandler_base::open): Always add GENERIC_READ access
        when opening raw disk devices.
        * fhandler_floppy.cc (fhandler_dev_floppy::lseek): Implement bytewise
        access.
        * fhandler_raw.cc (fhandler_dev_raw::open): Always open raw disk device
        binary.
        (fhandler_dev_raw::raw_write): Don't drop read buffer content when
        writing after read.

23 years ago * mmap.cc (mmap_record::fixup_map): New method to duplicate
Corinna Vinschen [Mon, 5 Feb 2001 12:36:41 +0000 (12:36 +0000)]
    * mmap.cc (mmap_record::fixup_map): New method to duplicate
        the memory protection in a just forked child.
        (mmap): Realign gran_len to page boundary only on anonymous
        mapping before saving in the mmap_record.
        (munmap): Cleanup code.
        (msync): Ditto.
        (fixup_mmaps_after_fork): Ditto. Call mmap_record::fixup_map now.

23 years ago * config.guess: Import from subversions.gnu.org (revision 1.181).
Michael Sokolov [Sun, 4 Feb 2001 18:17:30 +0000 (18:17 +0000)]
* config.guess: Import from subversions.gnu.org (revision 1.181).
* config.sub: Import from subversions.gnu.org (revision 1.199).

23 years ago Binutils portion of fix for syntax array elements when max
Patrick Macdonald [Fri, 2 Feb 2001 23:04:39 +0000 (23:04 +0000)]
Binutils portion of fix for syntax array elements when max
operands is greater than 127.

2001-02-02  Patrick Macdonald  <patrickm@redhat.com>

* cgen.h (CGEN_SYNTAX_CHAR_TYPE): Typedef as unsigned short.
(CGEN_MAX_SYNTAX_ELEMENTS): Rename from CGEN_MAX_SYNTAX_BYTES.
(CGEN_SYNTAX): Define using CGEN_MAX_SYNTAX_ELEMENTS.

* fr30-desc.h: Regenerate with CGEN_MAX_SYNTAX_ELEMENTS.
* m32r-desc.h: Regenerate.

23 years agomerge from gcc
DJ Delorie [Fri, 2 Feb 2001 18:58:10 +0000 (18:58 +0000)]
merge from gcc

23 years ago * include/winnt.h: (__TEXT): Add private macro.
Earnie Boyd [Fri, 2 Feb 2001 18:10:58 +0000 (18:10 +0000)]
* include/winnt.h: (__TEXT): Add private macro.
(_TEXT): Modify definition to use __TEXT.
(_T): Ditto.
This change allows the passing of a MACRO as an argument and have that
MACRO resolved first.
Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>

23 years agoFri Feb 2 10:34:07 2001 Earnie Boyd <earnie@users.sourceforge.net>
Earnie Boyd [Fri, 2 Feb 2001 16:50:06 +0000 (16:50 +0000)]
Fri Feb  2 10:34:07  2001  Earnie Boyd  <earnie@users.sourceforge.net>

* include/tchar.h: (__TEXT): Add private macro.
(_TEXT): Modify definition to use __TEXT.
(_T): Ditto.
This change allows the passing of a MACRO as an argument and have that
MACRO resolved first.
Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>

23 years ago* cygheap.cc (creturn): Correctly calculate cygheap_max.
Christopher Faylor [Fri, 2 Feb 2001 04:32:02 +0000 (04:32 +0000)]
* cygheap.cc (creturn): Correctly calculate cygheap_max.

23 years ago* libc/sys/sh/sys/syscall.h (SYS_get_argc, SYS_get_argN_len,
Alexandre Oliva [Thu, 1 Feb 2001 21:25:56 +0000 (21:25 +0000)]
* libc/sys/sh/sys/syscall.h (SYS_get_argc, SYS_get_argN_len,
SYS_get_argN):
* libc/sys/sh/syscalls.c (__setup_argv_for_main,
__setup_argv_and_call_main): New.

23 years ago * Makefile.in: Increment VERSION to 0.5
Earnie Boyd [Wed, 31 Jan 2001 22:41:22 +0000 (22:41 +0000)]
* Makefile.in: Increment VERSION to 0.5
* include/winnt.h: Change TEXT to _TEXT throughout.
(SID_RELEASE): Define.
Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>

23 years ago * Makefile.in: Increment version to 0.5
Earnie Boyd [Wed, 31 Jan 2001 22:17:17 +0000 (22:17 +0000)]
* Makefile.in: Increment version to 0.5
* include/_mingw.h: Increment minor version

23 years ago2001-01-31 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Wed, 31 Jan 2001 20:11:48 +0000 (20:11 +0000)]
2001-01-31  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/stdio.h (FILENAME_MAX): Changed to use __FILENAME_MAX__
        if defined.
        (FOPEN_MAX): Changed to use __FOPEN_MAX__ if defined.
        (L_tmpnam): Changed to use __L_tmpnam__ if defined.
        * libc/include/sys/config.h: Changed to set __FILENAME_MAX__
        appropriately for Cygwin and RTEMS so not to exceed PATH_MAX.

23 years ago* shared.cc (shared_info::initialize): Reduce size of heap.
Christopher Faylor [Wed, 31 Jan 2001 15:06:06 +0000 (15:06 +0000)]
* shared.cc (shared_info::initialize): Reduce size of heap.

23 years ago * include/sys/resource.h: Fix typo.
Corinna Vinschen [Wed, 31 Jan 2001 12:24:24 +0000 (12:24 +0000)]
    * include/sys/resource.h: Fix typo.

23 years ago * include/sys/resources.h: Add RLIMIT_NLIMITS and RLIM_NLIMITS.
Corinna Vinschen [Wed, 31 Jan 2001 12:21:23 +0000 (12:21 +0000)]
    * include/sys/resources.h: Add RLIMIT_NLIMITS and RLIM_NLIMITS.

23 years ago* include/cygwin/version.h: Bump version to 1.3.0.
Christopher Faylor [Tue, 30 Jan 2001 23:19:19 +0000 (23:19 +0000)]
* include/cygwin/version.h: Bump version to 1.3.0.

23 years ago * include/assert.h: (assert): Remove ; from end of definition
Earnie Boyd [Tue, 30 Jan 2001 18:03:23 +0000 (18:03 +0000)]
* include/assert.h: (assert): Remove ; from end of definition
Thanks to: AJ Reins <tbisp@qwest.net>

23 years ago * Apply Phil Krylov patches.
Earnie Boyd [Tue, 30 Jan 2001 15:47:41 +0000 (15:47 +0000)]
* Apply Phil Krylov patches.
2001-01-19  Phil Krylov  <phil@mail.ru>
* include/commctrl.h: (HDI_IMAGE) New definition.
(HDI_DI_SETITEM) Ditto.
(HDI_ORDER) Ditto.
(HDI_FILTER) Ditto.
(HDF_BITMAP_ON_RIGHT) Ditto.
(HDF_IMAGE) Ditto.
(HDM_SETORDERARRAY) Ditto.
(Header_SetOrderArray) Ditto.
(ICC_BAR_CLASSES) Ditto.
(struct _HD_ITEMA) Change definition.
(struct _HD_ITEMW) Ditto.
(struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
(InitCommonControlsEx()) Ditto.
2001-01-23  Phil Krylov  <phil@mail.ru>
* include/richedit.h: Many Richedit 2.0 definitions.

23 years ago * include/winuser.h: (IDC_HAND) New resource identifier.
Earnie Boyd [Tue, 30 Jan 2001 14:59:29 +0000 (14:59 +0000)]
* include/winuser.h: (IDC_HAND)  New resource identifier.
Thanks to: Mark Jordon <mark_jordan@ieee.org>

23 years ago * include/iptypes.h: Include <sys/types.h> for time_t declaration.
Earnie Boyd [Tue, 30 Jan 2001 14:37:54 +0000 (14:37 +0000)]
* include/iptypes.h: Include <sys/types.h> for time_t declaration.
Fix typo's.

23 years ago * objidl.h: (GetClassID): Argument needs to be a pointer.
Earnie Boyd [Tue, 30 Jan 2001 13:34:50 +0000 (13:34 +0000)]
* objidl.h: (GetClassID): Argument needs to be a pointer.
(GetUnmarshalClass): CLSID argument needs to be a pointer.
Thanks To: <bge@users.sourceforge.net>

23 years ago * Apply Danny Smith patch 102386
Earnie Boyd [Tue, 30 Jan 2001 12:55:03 +0000 (12:55 +0000)]
* Apply Danny Smith patch 102386
2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
* lib/rasapi32.def: add symbols available in NT4 and W2k

23 years ago * include/time.h: (CLOCKS_PER_SEC): Type cast the constant.
Earnie Boyd [Tue, 30 Jan 2001 12:44:46 +0000 (12:44 +0000)]
* include/time.h: (CLOCKS_PER_SEC): Type cast the constant.
Thanks to: Cosmin Truta  <cosmin@cs.toronto.edu>

23 years ago * pinfo.cc (pinfo::init): Use INVALID_HANDLE_VALUE instead of
Corinna Vinschen [Tue, 30 Jan 2001 08:10:04 +0000 (08:10 +0000)]
    * pinfo.cc (pinfo::init): Use INVALID_HANDLE_VALUE instead of
        explicit cast (HANDLE) 0xffffffff.
        * shared.cc (open_shared): Ditto.

23 years ago* libc/stdlib/mallocr.c: Undefine windows preprocessor variables when compiling
Christopher Faylor [Tue, 30 Jan 2001 04:04:59 +0000 (04:04 +0000)]
* libc/stdlib/mallocr.c: Undefine windows preprocessor variables when compiling
under Cygwin.

23 years agoHandle hppa64-linux systems.
Alan Modra [Tue, 30 Jan 2001 02:17:40 +0000 (02:17 +0000)]
Handle hppa64-linux systems.

23 years ago* fhandler_serial.cc (raw_write): Use local copy of OVERLAPPED structure
Christopher Faylor [Tue, 30 Jan 2001 01:52:29 +0000 (01:52 +0000)]
* fhandler_serial.cc (raw_write): Use local copy of OVERLAPPED structure
instead of shared structure to fix a race condition between read/write.

23 years ago2001-01-29 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Mon, 29 Jan 2001 22:40:50 +0000 (22:40 +0000)]
2001-01-29  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/math.h (signgam): Change to errno-like solution
        using a function to return the address of the real signgam.
        * libc/reent/signgam.c: New file containing __signgam().
        * libc/reent/Makefile.am: Added signgam.c to list of files.
        * libc/reent/Makefile.in: Regenerated.

23 years ago * time.h: (CLOCKS_PER_SEC) Change from FP to integer constant.
Earnie Boyd [Mon, 29 Jan 2001 19:05:18 +0000 (19:05 +0000)]
* time.h: (CLOCKS_PER_SEC) Change from FP to  integer constant.

23 years ago * mmap.cc (mmap): Remove obsolete check for MAP_SHARED|MAP_ANON as
Corinna Vinschen [Mon, 29 Jan 2001 13:39:17 +0000 (13:39 +0000)]
    * mmap.cc (mmap): Remove obsolete check for MAP_SHARED|MAP_ANON as
        being invalid.

23 years ago * mmap.cc (mmap_record::find_empty): Fix loop condition.
Corinna Vinschen [Mon, 29 Jan 2001 09:25:10 +0000 (09:25 +0000)]
    * mmap.cc (mmap_record::find_empty): Fix loop condition.

23 years ago* syscalls.cc (_link): Make sure that newpath does not exist. Set errno if it
Christopher Faylor [Mon, 29 Jan 2001 00:46:25 +0000 (00:46 +0000)]
* syscalls.cc (_link): Make sure that newpath does not exist.  Set errno if it
does.
* cygheap.cc (init_cheap): Don't specify a load address for the heap.  It
doesn't work on #!*& Windows 9x.
(cygheap_init): Move GetUserName to memory_init.
* dcrt0.cc (dll_crt0_1): Call new memory_init functin, eliminate call to
heap_init.
* heap.cc (heap_init): Improve error output.
* heap.h: Correct some declarations.
* shared.cc (mount_table_init): Remove.
(memory_init): Renamed from shared_init.  Reorganize to accomodate strange
Windows 9x problems with cygheap/heap interaction.
* shared_info.h: Rename shared_init to memory_init.

23 years ago * include/wchar.h: The 2001.01.18 Change was incorrect. The functions
Earnie Boyd [Sun, 28 Jan 2001 18:06:17 +0000 (18:06 +0000)]
* include/wchar.h: The 2001.01.18 Change was incorrect.  The functions
are actually C functions.  These functions are resolved via the
-lmsvcp60 library and comments were placed in the header.

23 years agoSun Jan 28 12:47:31 2001 Earnie Boyd <earnie@users.sourceforge.net>
Earnie Boyd [Sun, 28 Jan 2001 17:49:58 +0000 (17:49 +0000)]
Sun Jan 28 12:47:31  2001  Earnie Boyd  <earnie@users.sourceforge.net>

* Apply Danny Smith patch 102382
2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
* lib/mswsock.def: remove leading underscores from symbol names

23 years ago *include/stdlib.h (__p__pgmptr): add prototype.
Earnie Boyd [Sun, 28 Jan 2001 16:40:19 +0000 (16:40 +0000)]
*include/stdlib.h (__p__pgmptr): add prototype.
(__p__wpgmptr): likewise.
(_pgmptr_dll): move declaration from dos.h.
(_wpgmptr_dll): likewise.
(_pgmptr): conditional define (MSVCT/CRTDLL).
(_wpgmptr): likewise.
*include/dos.h (_base*_dll variables): declare only for CRTDLL.
(_os*_dll variables): likewise.
(_pgmptr_dll): remove declaration and associated defines to stdlib.h.
(_wpgmptr_dll): likewise.

23 years ago * Apply Danny Smith patch 102446
Earnie Boyd [Sun, 28 Jan 2001 16:21:01 +0000 (16:21 +0000)]
* Apply Danny Smith patch 102446
2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
* include/sql.h (ODBCVER): change default to 0x0351.
(SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
(SQLColAttributes): likewise.
(SQLBindParam): add prototype for ODBC 3.x function.
(SQLCloseCursor): likewise.
(SQLColAttribute): likewise.
(SQLCopyDesc):likewise.
(SQLEndTran): likewise.
(SQLFetchScroll): likewise.
(SQLGetConnectAttr): likewise.
(SQLGetDescField): likewise.
(SQLGetDescRec): likewise.
(SQLGetDiagField): likewise.
(SQLGetDiagRec): likewise.
(SQLGetEnvAttr): likewise.
(SQLGetStmtAttr): likewise.
(SQLSetConnectAttr): likewise.
(SQLSetDescField):likewise.
(SQLSetDescRec): likewise.
(SQLSetEnvAttr): likewise.
(SQLSetStmtAttr): likewise.
(SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
_WIN64 compatability;
(SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
(SQL_ACTIVE_CONNECTIONS): likewise.
(SQL_ACTIVE_STATEMENTS): likewise.
(SQL_ALL_EXCEPT_LIKE): likewise.
(SQL_API_ALL_FUNCTIONS): likewise.
(SQL_API_LOADBYORDINAL): likewise.
(SQL_API_SQLBINDPARAMETER): likewise.
(SQL_API_SQLBROWSECONNECT): likewise.
(SQL_API_SQLCOLATTRIBUTES): likewise.
(SQL_API_SQLCOLUMNPRIVILEGES): likewise.
(SQL_API_SQLDESCRIBEPARAM): likewise.
(SQL_API_SQLDRIVERCONNECT): likewise.
(SQL_API_SQLDRIVERS): likewise.
(SQL_API_SQLEXTENDEDFETCH): likewise.
(SQL_API_SQLFOREIGNKEYS): likewise.
(SQL_API_SQLMORERESULTS): likewise.
(SQL_API_SQLNATIVESQL): likewise.
(SQL_API_SQLNUMPARAMS): likewise.
(SQL_API_SQLPARAMOPTIONS): likewise.
(SQL_API_SQLPRIMARYKEYS): likewise.
(SQL_API_SQLPROCEDURECOLUMNS): likewise.
(SQL_API_SQLPROCEDURES): likewise.
(SQL_API_SQLSETPOS): likewise.
(SQL_API_SQLSETSCROLLOPTIONS): likewise.
(SQL_API_SQLTABLEPRIVILEGES): likewise.
(SQL_ASYNC_ENABLE): likewise.
(SQL_ASYNC_ENABLE_DEFAULT): likewise.
(SQL_ASYNC_ENABLE_OFF): likewise.
(SQL_ASYNC_ENABLE_ON): likewise.
(SQL_ATTR_READONLY): likewise.
(SQL_ATTR_READWRITE_UNKNOWN): likewise.
(SQL_ATTR_WRITE): likewise.
(SQL_AUTOCOMMIT): likewise.
(SQL_AUTOCOMMIT_DEFAULT): likewise.
(SQL_AUTOCOMMIT_OFF): likewise.
(SQL_AUTOCOMMIT_ON): likewise.
(SQL_BEST_ROWID): likewise.
(SQL_BIGINT): likewise.
(SQL_BINARY): likewise.
(SQL_BIND_BY_COLUMN): likewise.
(SQL_BIND_TYPE): likewise.
(SQL_BIND_TYPE_DEFAULT): likewise.
(SQL_BIT): likewise.
(SQL_BOOKMARK_PERSISTENCE): likewise.
(SQL_BP_CLOSE): likewise.
(SQL_BP_DELETE): likewise.
(SQL_BP_DROP): likewise.
(SQL_BP_OTHER_HSTMT): likewise.
(SQL_BP_SCROLL): likewise.
(SQL_BP_TRANSACTION): likewise.
(SQL_BP_UPDATE): likewise.
(SQL_C_BINARY): likewise.
(SQL_C_BIT): likewise.
(SQL_C_BOOKMARK): likewise.
(SQL_C_CHAR): likewise.
(SQL_C_DATE): likewise.
(SQL_C_DEFAULT): likewise.
(SQL_C_DOUBLE): likewise.
(SQL_C_FLOAT): likewise.
(SQL_C_LONG): likewise.
(SQL_C_SHORT): likewise.
(SQL_C_SLONG): likewise.
(SQL_C_SSHORT): likewise.
(SQL_C_STINYINT): likewise.
(SQL_C_TIME): likewise.
(SQL_C_TIMESTAMP): likewise.
(SQL_C_TINYINT): likewise.
(SQL_C_ULONG): likewise.
(SQL_C_USHORT): likewise.
(SQL_C_UTINYINT): likewise.
(SQL_CB_NON_NULL): likewise.
(SQL_CB_NULL): likewise.
(SQL_CC_CLOSE): likewise.
(SQL_CC_DELETE): likewise.
(SQL_CC_PRESERVE): likewise.
(SQL_CN_ANY): likewise.
(SQL_CN_DIFFERENT): likewise.
(SQL_CN_NONE): likewise.
(SQL_COLATT_OPT_MAX): likewise.
(SQL_COLATT_OPT_MIN): likewise.
(SQL_COLUMN_ALIAS): likewise.
(SQL_COLUMN_AUTO_INCREMENT): likewise.
(SQL_COLUMN_CASE_SENSITIVE): likewise.
(SQL_COLUMN_COUNT): likewise.
(SQL_COLUMN_DISPLAY_SIZE): likewise.
(SQL_COLUMN_DRIVER_START): likewise.
(SQL_COLUMN_LABEL): likewise.
(SQL_COLUMN_LENGTH): likewise.
(SQL_COLUMN_MONEY): likewise.
(SQL_COLUMN_NAME): likewise.
(SQL_COLUMN_NULLABLE): likewise.
(SQL_COLUMN_OWNER_NAME): likewise.
(SQL_COLUMN_PRECISION): likewise.
(SQL_COLUMN_QUALIFIER_NAME): likewise.
(SQL_COLUMN_SCALE): likewise.
(SQL_COLUMN_SEARCHABLE): likewise.
(SQL_COLUMN_TABLE_NAME): likewise.
(SQL_COLUMN_TYPE): likewise.
(SQL_COLUMN_TYPE_NAME): likewise.
(SQL_COLUMN_UNSIGNED): likewise.
(SQL_COLUMN_UPDATABLE): likewise.
(SQL_CONCAT_NULL_BEHAVIOR): likewise.
(SQL_CONCUR_DEFAULT): likewise.
(SQL_CONCUR_LOCK): likewise.
(SQL_CONCUR_READ_ONLY): likewise.
(SQL_CONCUR_ROWVER): likewise.
(SQL_CONCUR_TIMESTAMP): likewise.
(SQL_CONCUR_VALUES): likewise.
(SQL_CONCURRENCY): likewise.
(SQL_CONN_OPT_MAX): likewise.
(SQL_CONN_OPT_MIN): likewise.
(SQL_CONNECT_OPT_DRVR_START): likewise.
(SQL_CONVERT_BIGINT): likewise.
(SQL_CONVERT_BINARY): likewise.
(SQL_CONVERT_BIT): likewise.
(SQL_CONVERT_CHAR): likewise.
(SQL_CONVERT_DATE): likewise.
(SQL_CONVERT_DECIMAL): likewise.
(SQL_CONVERT_DOUBLE): likewise.
(SQL_CONVERT_FLOAT): likewise.
(SQL_CONVERT_FUNCTIONS): likewise.
(SQL_CONVERT_INTEGER): likewise.
(SQL_CONVERT_LONGVARBINARY): likewise.
(SQL_CONVERT_LONGVARCHAR): likewise.
(SQL_CONVERT_NUMERIC): likewise.
(SQL_CONVERT_REAL): likewise.
(SQL_CONVERT_SMALLINT): likewise.
(SQL_CONVERT_TIME): likewise.
(SQL_CONVERT_TIMESTAMP): likewise.
(SQL_CONVERT_TINYINT): likewise.
(SQL_CONVERT_VARBINARY): likewise.
(SQL_CONVERT_VARCHAR): likewise.
(SQL_CORRELATION_NAME): likewise.
(SQL_CR_CLOSE): likewise.
(SQL_CR_DELETE): likewise.
(SQL_CR_PRESERVE): likewise.
(SQL_CUR_DEFAULT): likewise.
(SQL_CUR_USE_DRIVER): likewise.
(SQL_CUR_USE_IF_NEEDED): likewise.
(SQL_CUR_USE_ODBC): likewise.
(SQL_CURRENT_QUALIFIER): likewise.
(SQL_CURSOR_DYNAMIC): likewise.
(SQL_CURSOR_FORWARD_ONLY): likewise.
(SQL_CURSOR_KEYSET_DRIVEN): likewise.
(SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
(SQL_CURSOR_STATIC): likewise.
(SQL_CURSOR_TYPE): likewise.
(SQL_CURSOR_TYPE_DEFAULT): likewise.
(SQL_CVT_BIGINT): likewise.
(SQL_CVT_BINARY): likewise.
(SQL_CVT_BIT): likewise.
(SQL_CVT_CHAR): likewise.
(SQL_CVT_DATE): likewise.
(SQL_CVT_DECIMAL): likewise.
(SQL_CVT_DOUBLE): likewise.
(SQL_CVT_FLOAT): likewise.
(SQL_CVT_INTEGER): likewise.
(SQL_CVT_LONGVARBINARY): likewise.
(SQL_CVT_LONGVARCHAR): likewise.
(SQL_CVT_NUMERIC): likewise.
(SQL_CVT_REAL): likewise.
(SQL_CVT_SMALLINT): likewise.
(SQL_CVT_TIME): likewise.
(SQL_CVT_TIMESTAMP): likewise.
(SQL_CVT_TINYINT): likewise.
(SQL_CVT_VARBINARY): likewise.
(SQL_CVT_VARCHAR): likewise.
(SQL_DATABASE_NAME): likewise.
(SQL_DATE): likewise.
(SQL_DRIVER_HDBC): likewise.
(SQL_DRIVER_HENV): likewise.
(SQL_DRIVER_HLIB): likewise.
(SQL_DRIVER_HSTMT): likewise.
(SQL_DRIVER_NAME): likewise.
(SQL_DRIVER_ODBC_VER): likewise.
(SQL_DRIVER_VER): likewise.
(SQL_ENSURE): likewise.
(SQL_EXPRESSIONS_IN_ORDERBY): likewise.
(SQL_EXT_API_LAST): likewise.
(SQL_EXT_API_START): likewise.
(SQL_FD_FETCH_BOOKMARK): likewise.
(SQL_FD_FETCH_PREV): likewise.
(SQL_FD_FETCH_RESUME): likewise.
(SQL_FETCH_PREV): likewise.
(SQL_FETCH_RESUME): likewise.
(SQL_FILE_NOT_SUPPORTED): likewise.
(SQL_FILE_QUALIFIER): likewise.
(SQL_FILE_TABLE): likewise.
(SQL_FILE_USAGE): likewise.
(SQL_FN_CVT_CONVERT): likewise.
(SQL_FN_NUM_ABS): likewise.
(SQL_FN_NUM_ACOS): likewise.
(SQL_FN_NUM_ASIN): likewise.
(SQL_FN_NUM_ATAN): likewise.
(SQL_FN_NUM_ATAN2): likewise.
(SQL_FN_NUM_CEILING): likewise.
(SQL_FN_NUM_COS): likewise.
(SQL_FN_NUM_COT): likewise.
(SQL_FN_NUM_DEGREES): likewise.
(SQL_FN_NUM_EXP): likewise.
(SQL_FN_NUM_FLOOR): likewise.
(SQL_FN_NUM_LOG): likewise.
(SQL_FN_NUM_LOG10): likewise.
(SQL_FN_NUM_MOD): likewise.
(SQL_FN_NUM_PI): likewise.
(SQL_FN_NUM_POWER): likewise.
(SQL_FN_NUM_RADIANS): likewise.
(SQL_FN_NUM_RAND): likewise.
(SQL_FN_NUM_ROUND): likewise.
(SQL_FN_NUM_SIGN): likewise.
(SQL_FN_NUM_SIN): likewise.
(SQL_FN_NUM_SQRT): likewise.
(SQL_FN_NUM_TAN): likewise.
(SQL_FN_NUM_TRUNCATE): likewise.
(SQL_FN_STR_ASCII): likewise.
(SQL_FN_STR_CHAR): likewise.
(SQL_FN_STR_CONCAT): likewise.
(SQL_FN_STR_DIFFERENCE): likewise.
(SQL_FN_STR_INSERT): likewise.
(SQL_FN_STR_LCASE): likewise.
(SQL_FN_STR_LEFT): likewise.
(SQL_FN_STR_LENGTH): likewise.
(SQL_FN_STR_LOCATE): likewise.
(SQL_FN_STR_LOCATE_2): likewise.
(SQL_FN_STR_LTRIM): likewise.
(SQL_FN_STR_REPEAT): likewise.
(SQL_FN_STR_REPLACE): likewise.
(SQL_FN_STR_RIGHT): likewise.
(SQL_FN_STR_RTRIM): likewise.
(SQL_FN_STR_SOUNDEX): likewise.
(SQL_FN_STR_SPACE): likewise.
(SQL_FN_STR_SUBSTRING): likewise.
(SQL_FN_STR_UCASE): likewise.
(SQL_FN_SYS_DBNAME): likewise.
(SQL_FN_SYS_IFNULL): likewise.
(SQL_FN_SYS_USERNAME): likewise.
(SQL_FN_TD_CURDATE): likewise.
(SQL_FN_TD_CURTIME): likewise.
(SQL_FN_TD_DAYNAME): likewise.
(SQL_FN_TD_DAYOFMONTH): likewise.
(SQL_FN_TD_DAYOFWEEK): likewise.
(SQL_FN_TD_DAYOFYEAR): likewise.
(SQL_FN_TD_HOUR): likewise.
(SQL_FN_TD_MINUTE): likewise.
(SQL_FN_TD_MONTH): likewise.
(SQL_FN_TD_MONTHNAME): likewise.
(SQL_FN_TD_NOW): likewise.
(SQL_FN_TD_QUARTER): likewise.
(SQL_FN_TD_SECOND): likewise.
(SQL_FN_TD_TIMESTAMPadd): likewise.
(SQL_FN_TD_TIMESTAMPDIFF): likewise.
(SQL_FN_TD_WEEK): likewise.
(SQL_FN_TD_YEAR): likewise.
(SQL_FN_TSI_DAY): likewise.
(SQL_FN_TSI_FRAC_SECOND): likewise.
(SQL_FN_TSI_HOUR): likewise.
(SQL_FN_TSI_MINUTE): likewise.
(SQL_FN_TSI_MONTH): likewise.
(SQL_FN_TSI_QUARTER): likewise.
(SQL_FN_TSI_SECOND): likewise.
(SQL_FN_TSI_WEEK): likewise.
(SQL_FN_TSI_YEAR): likewise.
(SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
(SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
(SQL_GB_NO_RELATION): likewise.
(SQL_GB_NOT_SUPPORTED): likewise.
(SQL_GD_BLOCK): likewise.
(SQL_GD_BOUND): likewise.
(SQL_GET_BOOKMARK): likewise.
(SQL_GROUP_BY): likewise.
(SQL_INFO_DRIVER_START): likewise.
(SQL_INFO_FIRST): likewise.
(SQL_INFO_LAST): likewise.
(SQL_INTERVAL_DAY): likewise.
(SQL_INTERVAL_DAY_TO_HOUR): likewise.
(SQL_INTERVAL_DAY_TO_MINUTE): likewise.
(SQL_INTERVAL_DAY_TO_SECOND): likewise.
(SQL_INTERVAL_HOUR): likewise.
(SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
(SQL_INTERVAL_HOUR_TO_SECOND): likewise.
(SQL_INTERVAL_MINUTE): likewise.
(SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
(SQL_INTERVAL_MONTH): likewise.
(SQL_INTERVAL_SECOND): likewise.
(SQL_INTERVAL_YEAR): likewise.
(SQL_INTERVAL_YEAR_TO_MONTH): likewise.
(SQL_KEYSET_SIZE): likewise.
(SQL_KEYSET_SIZE_DEFAULT): likewise.
(SQL_KEYWORDS): likewise.
(SQL_LCK_EXCLUSIVE): likewise.
(SQL_LCK_NO_CHANGE): likewise.
(SQL_LCK_UNLOCK): likewise.
(SQL_LIKE_ESCAPE_CLAUSE): likewise.
(SQL_LIKE_ONLY): likewise.
(SQL_LOCK_TYPES): likewise.
(SQL_LOGIN_TIMEOUT): likewise.
(SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
(SQL_LONGVARBINARY): likewise.
(SQL_LONGVARCHAR): likewise.
(SQL_MAX_BINARY_LITERAL_LEN): likewise.
(SQL_MAX_CHAR_LITERAL_LEN): likewise.
(SQL_MAX_DSN_LENGTH): likewise.
(SQL_MAX_LENGTH): likewise.
(SQL_MAX_LENGTH_DEFAULT): likewise.
(SQL_MAX_OPTION_STRING_LENGTH): likewise.
(SQL_MAX_OWNER_NAME_LEN): likewise.
(SQL_MAX_PROCEDURE_NAME_LEN): likewise.
(SQL_MAX_QUALIFIER_NAME_LEN): likewise.
(SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
(SQL_MAX_ROWS): likewise.
(SQL_MAX_ROWS_DEFAULT): likewise.
(SQL_MODE_DEFAULT): likewise.
(SQL_MODE_READ_ONLY): likewise.
(SQL_MODE_READ_WRITE): likewise.
(SQL_MULT_RESULT_SETS): likewise.
(SQL_MULTIPLE_ACTIVE_TXN): likewise.
(SQL_NC_END): likewise.
(SQL_NC_START): likewise.
(SQL_NEED_LONG_DATA_LEN): likewise.
(SQL_NNC_NON_NULL): likewise.
(SQL_NNC_NULL): likewise.
(SQL_NO_TOTAL): likewise.
(SQL_NON_NULLABLE_COLUMNS): likewise.
(SQL_NOSCAN): likewise.
(SQL_NOSCAN_DEFAULT): likewise.
(SQL_NOSCAN_OFF): likewise.
(SQL_NOSCAN_ON): likewise.
(SQL_NUM_EXTENSIONS): likewise.
(SQL_NUM_FUNCTIONS): likewise.
(SQL_NUMERIC_FUNCTIONS): likewise.
(SQL_OAC_LEVEL1): likewise.
(SQL_OAC_LEVEL2): likewise.
(SQL_OAC_NONE): likewise.
(SQL_ODBC_API_CONFORMANCE): likewise.
(SQL_ODBC_CURSORS): likewise.
(SQL_ODBC_KEYWORDS): likewise.
(SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
(SQL_ODBC_SQL_CONFORMANCE): likewise.
(SQL_ODBC_SQL_OPT_IEF): likewise.
(SQL_ODBC_VER): likewise.
(SQL_OPT_TRACE): likewise.
(SQL_OPT_TRACE_DEFAULT): likewise.
(SQL_OPT_TRACE_FILE_DEFAULT): likewise.
(SQL_OPT_TRACE_OFF): likewise.
(SQL_OPT_TRACE_ON): likewise.
(SQL_OPT_TRACEFILE): likewise.
(SQL_OSC_CORE): likewise.
(SQL_OSC_EXTENDED): likewise.
(SQL_OSC_MINIMUM): likewise.
(SQL_OSCC_COMPLIANT): likewise.
(SQL_OSCC_NOT_COMPLIANT): likewise.
(SQL_OU_DML_STATEMENTS): likewise.
(SQL_OU_INDEX_DEFINITION): likewise.
(SQL_OU_PRIVILEGE_DEFINITION): likewise.
(SQL_OU_PROCEDURE_INVOCATION): likewise.
(SQL_OU_TABLE_DEFINITION): likewise.
(SQL_OUTER_JOINS): likewise.
(SQL_OWNER_TERM): likewise.
(SQL_OWNER_USAGE): likewise.
(SQL_PACKET_SIZE): likewise.
(SQL_PC_NOT_PSEUDO): likewise.
(SQL_POS_add): likewise.
(SQL_POS_DELETE): likewise.
(SQL_POS_OPERATIONS): likewise.
(SQL_POS_POSITION): likewise.
(SQL_POS_REFRESH): likewise.
(SQL_POS_UPDATE): likewise.
(SQL_POSITIONED_STATEMENTS): likewise.
(SQL_PROCEDURE_TERM): likewise.
(SQL_PROCEDURES): likewise.
(SQL_PS_POSITIONED_DELETE): likewise.
(SQL_PS_POSITIONED_UPDATE): likewise.
(SQL_PS_SELECT_FOR_UPDATE): likewise.
(SQL_QL_END): likewise.
(SQL_QL_START): likewise.
(SQL_QU_DML_STATEMENTS): likewise.
(SQL_QU_INDEX_DEFINITION): likewise.
(SQL_QU_PRIVILEGE_DEFINITION): likewise.
(SQL_QU_PROCEDURE_INVOCATION): likewise.
(SQL_QU_TABLE_DEFINITION): likewise.
(SQL_QUALIFIER_LOCATION): likewise.
(SQL_QUALIFIER_NAME_SEPARATOR): likewise.
(SQL_QUALIFIER_TERM): likewise.
(SQL_QUALIFIER_USAGE): likewise.
(SQL_QUERY_TIMEOUT): likewise.
(SQL_QUERY_TIMEOUT_DEFAULT): likewise.
(SQL_QUICK): likewise.
(SQL_QUIET_MODE): likewise.
(SQL_QUOTED_IDENTIFIER_CASE): likewise.
(SQL_RD_DEFAULT): likewise.
(SQL_RD_OFF): likewise.
(SQL_RD_ON): likewise.
(SQL_RETRIEVE_DATA): likewise.
(SQL_ROW_NUMBER): likewise.
(SQL_ROW_UPDATES): likewise.
(SQL_ROWSET_SIZE): likewise.
(SQL_ROWSET_SIZE_DEFAULT): likewise.
(SQL_ROWVER): likewise.
(SQL_SC_NON_UNIQUE): likewise.
(SQL_SC_TRY_UNIQUE): likewise.
(SQL_SC_UNIQUE): likewise.
(SQL_SCCO_OPT_TIMESTAMP): likewise.
(SQL_SCROLL_DYNAMIC): likewise.
(SQL_SCROLL_FORWARD_ONLY): likewise.
(SQL_SCROLL_KEYSET_DRIVEN): likewise.
(SQL_SCROLL_OPTIONS): likewise.
(SQL_SCROLL_STATIC): likewise.
(SQL_SEARCHABLE): likewise.
(SQL_SIGNED_OFFSET): likewise.
(SQL_SIMULATE_CURSOR): likewise.
(SQL_SO_DYNAMIC): likewise.
(SQL_SO_FORWARD_ONLY): likewise.
(SQL_SO_KEYSET_DRIVEN): likewise.
(SQL_SO_MIXED): likewise.
(SQL_SO_STATIC): likewise.
(SQL_SPEC_MAJOR): likewise.
(SQL_SPEC_MINOR): likewise.
(SQL_SPEC_STRING): likewise.
(SQL_SQ_COMPARISON): likewise.
(SQL_SQ_CORRELATED_SUBQUERIES): likewise.
(SQL_SQ_EXISTS): likewise.
(SQL_SQ_IN): likewise.
(SQL_SQ_QUANTIFIED): likewise.
(SQL_SQLSTATE_SIZE): likewise.
(SQL_SS_addITIONS): likewise.
(SQL_SS_DELETIONS): likewise.
(SQL_SS_UPDATES): likewise.
(SQL_STATIC_SENSITIVITY): likewise.
(SQL_STMT_OPT_MAX): likewise.
(SQL_STMT_OPT_MIN): likewise.
(SQL_STRING_FUNCTIONS): likewise.
(SQL_SUBQUERIES): likewise.
(SQL_SYSTEM_FUNCTIONS): likewise.
(SQL_TABLE_STAT): likewise.
(SQL_TABLE_TERM): likewise.
(SQL_TIME): likewise.
(SQL_TIMEDATE_add_INTERVALS): likewise.
(SQL_TIMEDATE_DIFF_INTERVALS): likewise.
(SQL_TIMEDATE_FUNCTIONS): likewise.
(SQL_TIMESTAMP): likewise.
(SQL_TINYINT): likewise.
(SQL_TRANSLATE_DLL): likewise.
(SQL_TRANSLATE_OPTION): likewise.
(SQL_TXN_ISOLATION): likewise.
(SQL_TXN_VERSIONING): likewise.
(SQL_TYPE_DRIVER_END): likewise.
(SQL_TYPE_DRIVER_START): likewise.
(SQL_TYPE_MAX): likewise.
(SQL_TYPE_MIN): likewise.
(SQL_TYPE_NULL): likewise.
(SQL_U_UNION): likewise.
(SQL_U_UNION_ALL): likewise.
(SQL_UB_DEFAULT): likewise.
(SQL_UB_OFF): likewise.
(SQL_UB_ON): likewise.
(SQL_UNICODE): likewise.
(SQL_UNICODE_CHAR): likewise.
(SQL_UNICODE_LONGVARCHAR): likewise.
(SQL_UNICODE_VARCHAR): likewise.
(SQL_UNION): likewise.
(SQL_UNSEARCHABLE): likewise.
(SQL_UNSIGNED_OFFSET): likewise.
(SQL_USE_BOOKMARKS): likewise.
(SQL_VARBINARY): likewise.
(SQL_TRUE): add define for ODBC3.x.
(SQL_FALSE): likewise.
(SQL_AM_CONNECTION): likewise.
(SQL_AM_NONE): likewise.
(SQL_AM_STATEMENT): likewise.
(SQL_API_SQLALLOCHANDLE): likewise.
(SQL_API_SQLBINDPARAM): likewise.
(SQL_API_SQLCLOSECURSOR): likewise.
(SQL_API_SQLCOLATTRIBUTE): likewise.
(SQL_API_SQLCOPYDESC): likewise.
(SQL_API_SQLENDTRAN): likewise.
(SQL_API_SQLFETCHSCROLL): likewise.
(SQL_API_SQLFREEHANDLE): likewise.
(SQL_API_SQLGETCONNECTATTR): likewise.
(SQL_API_SQLGETDESCFIELD): likewise.
(SQL_API_SQLGETDESCREC): likewise.
(SQL_API_SQLGETDIAGFIELD): likewise.
(SQL_API_SQLGETDIAGREC): likewise.
(SQL_API_SQLGETENVATTR): likewise.
(SQL_API_SQLGETSTMTATTR): likewise.
(SQL_API_SQLSETCONNECTATTR): likewise.
(SQL_API_SQLSETDESCFIELD): likewise.
(SQL_API_SQLSETDESCREC): likewise.
(SQL_API_SQLSETENVATTR): likewise.
(SQL_API_SQLSETSTMTATTR): likewise.
(SQL_ARD_TYPE): likewise.
(SQL_AT_add_CONSTRAINT): likewise.
(SQL_ATTR_APP_PARAM_DESC): likewise.
(SQL_ATTR_APP_ROW_DESC): likewise.
(SQL_ATTR_AUTO_IPD): likewise.
(SQL_ATTR_CURSOR_SCROLLABLE): likewise.
(SQL_ATTR_CURSOR_SENSITIVITY): likewise.
(SQL_ATTR_IMP_PARAM_DESC): likewise.
(SQL_ATTR_IMP_ROW_DESC): likewise.
(SQL_ATTR_METADATA_ID): likewise.
(SQL_ATTR_OUTPUT_NTS): likewise.
(SQL_CATALOG_NAME): likewise.
(SQL_CODE_DATE): likewise.
(SQL_CODE_TIME): likewise.
(SQL_CODE_TIMESTAMP): likewise.
(SQL_COLLATION_SEQ): likewise.
(SQL_CURSOR_SENSITIVITY): likewise.
(SQL_DATE_LEN): likewise.
(SQL_DATETIME): likewise.
(SQL_DEFAULT): likewise.
(SQL_DESC_ALLOC_AUTO): likewise.
(SQL_DESC_ALLOC_TYPE): likewise.
(SQL_DESC_ALLOC_USER): likewise.
(SQL_DESC_COUNT): likewise.
(SQL_DESC_DATA_PTR): likewise.
(SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
(SQL_DESC_INDICATOR_PTR): likewise.
(SQL_DESC_LENGTH): likewise.
(SQL_DESC_NAME): likewise.
(SQL_DESC_NULLABLE): likewise.
(SQL_DESC_OCTET_LENGTH): likewise.
(SQL_DESC_OCTET_LENGTH_PTR): likewise.
(SQL_DESC_PRECISION): likewise.
(SQL_DESC_SCALE): likewise.
(SQL_DESC_TYPE): likewise.
(SQL_DESC_UNNAMED): likewise.
(SQL_DESCRIBE_PARAMETER): likewise.
(SQL_DIAG_ALTER_DOMAIN): likewise.
(SQL_DIAG_ALTER_TABLE): likewise.
(SQL_DIAG_CALL): likewise.
(SQL_DIAG_CLASS_ORIGIN): likewise.
(SQL_DIAG_CONNECTION_NAME): likewise.
(SQL_DIAG_CREATE_ASSERTION): likewise.
(SQL_DIAG_CREATE_CHARACTER_SET): likewise.
(SQL_DIAG_CREATE_COLLATION): likewise.
(SQL_DIAG_CREATE_DOMAIN): likewise.
(SQL_DIAG_CREATE_INDEX): likewise.
(SQL_DIAG_CREATE_SCHEMA): likewise.
(SQL_DIAG_CREATE_TABLE): likewise.
(SQL_DIAG_CREATE_TRANSLATION): likewise.
(SQL_DIAG_CREATE_VIEW): likewise.
(SQL_DIAG_DELETE_WHERE): likewise.
(SQL_DIAG_DROP_ASSERTION): likewise.
(SQL_DIAG_DROP_CHARACTER_SET): likewise.
(SQL_DIAG_DROP_COLLATION): likewise.
(SQL_DIAG_DROP_DOMAIN): likewise.
(SQL_DIAG_DROP_INDEX): likewise.
(SQL_DIAG_DROP_SCHEMA): likewise.
(SQL_DIAG_DROP_TABLE): likewise.
(SQL_DIAG_DROP_TRANSLATION): likewise.
(SQL_DIAG_DROP_VIEW): likewise.
(SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
(SQL_DIAG_DYNAMIC_FUNCTION): likewise.
(SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
(SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
(SQL_DIAG_GRANT): likewise.
(SQL_DIAG_INSERT): likewise.
(SQL_DIAG_MESSAGE_TEXT): likewise.
(SQL_DIAG_NATIVE): likewise.
(SQL_DIAG_NUMBER): likewise.
(SQL_DIAG_RETURNCODE): likewise.
(SQL_DIAG_REVOKE): likewise.
(SQL_DIAG_ROW_COUNT): likewise.
(SQL_DIAG_SELECT_CURSOR): likewise.
(SQL_DIAG_SERVER_NAME): likewise.
(SQL_DIAG_SQLSTATE): likewise.
(SQL_DIAG_SUBCLASS_ORIGIN): likewise.
(SQL_DIAG_UNKNOWN_STATEMENT): likewise.
(SQL_DIAG_UPDATE_WHERE): likewise.
(SQL_FALSE): likewise.
(SQL_FETCH_ABSOLUTE): likewise.
(SQL_FETCH_LAST): likewise.
(SQL_FETCH_PRIOR): likewise.
(SQL_FETCH_RELATIVE): likewise.
(SQL_HANDLE_DBC): likewise.
(SQL_HANDLE_DESC): likewise.
(SQL_HANDLE_ENV): likewise.
(SQL_HANDLE_STMT): likewise.
(SQL_INSENSITIVE): likewise.
(SQL_INTEGRITY): likewise.
(SQL_MAX_CATALOG_NAME_LEN): likewise.
(SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
(SQL_MAX_DRIVER_CONNECTIONS): likewise.
(SQL_MAX_IDENTIFIER_LEN): likewise.
(SQL_MAX_SCHEMA_NAME_LEN): likewise.
(SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
(SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
(SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
(SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
(SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
(SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
(SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
(SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
(SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
(SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
(SQL_MAXIMUM_INDEX_SIZE): likewise.
(SQL_MAXIMUM_ROW_SIZE): likewise.
(SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
(SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
(SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
(SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
(SQL_NAMED): likewise.
(SQL_NONSCROLLABLE): likewise.
(SQL_NTSL): likewise.
(SQL_NULL_HANDLE): likewise.
(SQL_NULL_HDESC): likewise.
(SQL_OUTER_JOIN_CAPABILITIES): likewise.
(SQL_PRED_BASIC): likewise.
(SQL_PRED_CHAR): likewise.
(SQL_PRED_NONE): likewise.
(SQL_ROW_IDENTIFIER): likewise.
(SQL_SCROLLABLE): likewise.
(SQL_SENSITIVE): likewise.
(SQL_SUCCEEDED(rc)): likewise.
(SQL_TIME_LEN): likewise.
(SQL_TIMESTAMP_LEN): likewise.
(SQL_TRANSACTION_CAPABLE): likewise.
(SQL_TRANSACTION_ISOLATION_OPTION): likewise.
(SQL_TRANSACTION_READ_COMMITTED): likewise.
(SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
(SQL_TRANSACTION_REPEATABLE_READ): likewise.
(SQL_TRANSACTION_SERIALIZABLE): likewise.
(SQL_TYPE_DATE): likewise.
(SQL_TYPE_TIME): likewise.
(SQL_TYPE_TIMESTAMP): likewise.
(SQL_UNKNOWN_TYPE): likewise.
(SQL_UNNAMED): likewise.
(SQL_UNSPECIFIED): likewise.
(SQL_XOPEN_CLI_YEAR): likewise.
(SQLAllocConnect): add comment marking as deperecated.
(SQLAllocEnv): likewise.
(SQLAllocStmt): likewise.
(SQLFreeConnect): likewise.
(SQLFreeEnv): likewise.
(SQLGetConnectOption): likewise.
(SQLGetStmtOption): likewise.

* include/sqlext.h (#include <sqlucode.h>): add directive.
(SQLSetScrollOptions): non-core function, move prototype from sql.h.
(SQLColAttributes): likewise.
(SQLBulkOperations): add function prototype.
(SQLAllocHandleStd): likewise
(TraceReturn): add Trace API prototype.
(TraceVersion): likewise.
(ODBCGetTryWaitValue):likewise.
(ODBCSetTryWaitValue): likewise.
(SQL_LOCK_RECORD): correct function macro.
(SQL_REFRESH_RECORD): likewise.
(SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
_WIN64 compatability.
move defines for non-core functions from sql.h to sqlext.h (refer
changes for sql.h)
(SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
(SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
(SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
(SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
(SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
(SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
(SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
(SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
(SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
(SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
(SQL_AF_ALL): likewise.
(SQL_AF_AVG): likewise.
(SQL_AF_COUNT): likewise.
(SQL_AF_DISTINCT): likewise.
(SQL_AF_MAX): likewise.
(SQL_AF_MIN): likewise.
(SQL_AF_SUM): likewise.
(SQL_AGGREGATE_FUNCTIONS): likewise.
(SQL_ALL_CATALOGS): likewise.
(SQL_ALL_SCHEMAS): likewise.
(SQL_ALL_TABLE_TYPES): likewise.
(SQL_ALTER_DOMAIN): likewise.
(SQL_AM_CONNECTION): likewise.
(SQL_AM_NONE): likewise.
(SQL_AM_STATEMENT): likewise.
(SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
(SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
(SQL_API_SQLALLOCHANDLESTD): likewise.
(SQL_API_SQLBULKOPERATIONS): likewise.
(SQL_ASYNC_MODE): likewise.
(SQL_AT_ADD_COLUMN_COLLATION): likewise.
(SQL_AT_ADD_COLUMN_DEFAULT): likewise.
(SQL_AT_ADD_COLUMN_SINGLE): likewise.
(SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
(SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
(SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
(SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
(SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
(SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
(SQL_AT_DROP_COLUMN_CASCADE): likewise.
(SQL_AT_DROP_COLUMN_DEFAULT): likewise.
(SQL_AT_DROP_COLUMN_RESTRICT): likewise.
(SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
(SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
(SQL_AT_SET_COLUMN_DEFAULT): likewise.
(SQL_ATTR_ACCESS_MODE): likewise.
(SQL_ATTR_ASYNC_ENABLE): likewise.
(SQL_ATTR_AUTOCOMMIT): likewise.
(SQL_ATTR_CONCURRENCY): likewise.
(SQL_ATTR_CONNECTION_POOLING): likewise.
(SQL_ATTR_CONNECTION_TIMEOUT): likewise.
(SQL_ATTR_CP_MATCH): likewise.
(SQL_ATTR_CURRENT_CATALOG): likewise.
(SQL_ATTR_CURSOR_TYPE): likewise.
(SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
(SQL_ATTR_ENABLE_AUTO_IPD): likewise.
(SQL_ATTR_ENLIST_IN_DTC): likewise.
(SQL_ATTR_ENLIST_IN_XA): likewise.
(SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
(SQL_ATTR_KEYSET_SIZE): likewise.
(SQL_ATTR_LOGIN_TIMEOUT): likewise.
(SQL_ATTR_MAX_LENGTH): likewise.
(SQL_ATTR_MAX_ROWS): likewise.
(SQL_ATTR_NOSCAN): likewise.
(SQL_ATTR_ODBC_CURSORS): likewise.
(SQL_ATTR_ODBC_VERSION): likewise.
(SQL_ATTR_PACKET_SIZE): likewise.
(SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
(SQL_ATTR_PARAM_BIND_TYPE): likewise.
(SQL_ATTR_PARAM_OPERATION_PTR): likewise.
(SQL_ATTR_PARAM_STATUS_PTR): likewise.
(SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
(SQL_ATTR_PARAMSET_SIZE): likewise.
(SQL_ATTR_QUERY_TIMEOUT): likewise.
(SQL_ATTR_QUIET_MODE): likewise.
(SQL_ATTR_RETRIEVE_DATA): likewise.
(SQL_ATTR_ROW_ARRAY_SIZE): likewise.
(SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
(SQL_ATTR_ROW_BIND_TYPE): likewise.
(SQL_ATTR_ROW_NUMBER): likewise.
(SQL_ATTR_ROW_OPERATION_PTR): likewise.
(SQL_ATTR_ROW_STATUS_PTR): likewise.
(SQL_ATTR_ROWS_FETCHED_PTR): likewise.
(SQL_ATTR_SIMULATE_CURSOR): likewise.
(SQL_ATTR_TRACE): likewise.
(SQL_ATTR_TRACEFILE): likewise.
(SQL_ATTR_TRANSLATE_LIB): likewise.
(SQL_ATTR_TRANSLATE_OPTION): likewise.
(SQL_ATTR_TXN_ISOLATION): likewise.
(SQL_ATTR_USE_BOOKMARKS): likewise.
(SQL_BATCH_ROW_COUNT): likewise.
(SQL_BATCH_SUPPORT): likewise.
(SQL_BRC_EXPLICIT): likewise.
(SQL_BRC_PROCEDURES): likewise.
(SQL_BRC_ROLLED_UP): likewise.
(SQL_BS_ROW_COUNT_EXPLICIT): likewise.
(SQL_BS_ROW_COUNT_PROC): likewise.
(SQL_BS_SELECT_EXPLICIT): likewise.
(SQL_BS_SELECT_PROC): likewise.
(SQL_C_INTERVAL_DAY): likewise.
(SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
(SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
(SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
(SQL_C_INTERVAL_HOUR): likewise.
(SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
(SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
(SQL_C_INTERVAL_MINUTE): likewise.
(SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
(SQL_C_INTERVAL_MONTH): likewise.
(SQL_C_INTERVAL_SECOND): likewise.
(SQL_C_INTERVAL_YEAR): likewise.
(SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
(SQL_C_NUMERIC): likewise.
(SQL_C_SBIGINT): likewise.
(SQL_C_TYPE_DATE): likewise.
(SQL_C_TYPE_TIME): likewise.
(SQL_C_TYPE_TIMESTAMP): likewise.
(SQL_C_UBIGINT): likewise.
(SQL_C_VARBOOKMARK): likewise.
(SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
(SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
(SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
(SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
(SQL_CA_CREATE_ASSERTION): likewise.
(SQL_CA1_ABSOLUTE): likewise.
(SQL_CA1_BOOKMARK): likewise.
(SQL_CA1_BULK_ADD): likewise.
(SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
(SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
(SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
(SQL_CA1_LOCK_EXCLUSIVE): likewise.
(SQL_CA1_LOCK_NO_CHANGE): likewise.
(SQL_CA1_LOCK_UNLOCK): likewise.
(SQL_CA1_NEXT): likewise.
(SQL_CA1_POS_DELETE): likewise.
(SQL_CA1_POS_POSITION): likewise.
(SQL_CA1_POS_REFRESH): likewise.
(SQL_CA1_POS_UPDATE): likewise.
(SQL_CA1_POSITIONED_DELETE): likewise.
(SQL_CA1_POSITIONED_UPDATE): likewise.
(SQL_CA1_RELATIVE): likewise.
(SQL_CA1_SELECT_FOR_UPDATE): likewise.
(SQL_CA2_CRC_APPROXIMATE): likewise.
(SQL_CA2_CRC_EXACT): likewise.
(SQL_CA2_LOCK_CONCURRENCY): likewise.
(SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
(SQL_CA2_MAX_ROWS_CATALOG): likewise.
(SQL_CA2_MAX_ROWS_DELETE): likewise.
(SQL_CA2_MAX_ROWS_INSERT): likewise.
(SQL_CA2_MAX_ROWS_SELECT): likewise.
(SQL_CA2_MAX_ROWS_UPDATE): likewise.
(SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
(SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
(SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
(SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
(SQL_CA2_SENSITIVITY_DELETIONS): likewise.
(SQL_CA2_SENSITIVITY_UPDATES): likewise.
(SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
(SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
(SQL_CA2_SIMULATE_UNIQUE): likewise.
(SQL_CATALOG_LOCATION): likewise.
(SQL_CATALOG_NAME_SEPARATOR): likewise.
(SQL_CATALOG_TERM): likewise.
(SQL_CATALOG_USAGE): likewise.
(SQL_CCOL_CREATE_COLLATION): likewise.
(SQL_CCS_COLLATE_CLAUSE): likewise.
(SQL_CCS_CREATE_CHARACTER_SET): likewise.
(SQL_CCS_LIMITED_COLLATION): likewise.
(SQL_CDO_COLLATION): likewise.
(SQL_CDO_CONSTRAINT): likewise.
(SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
(SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
(SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
(SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
(SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
(SQL_CDO_CREATE_DOMAIN): likewise.
(SQL_CDO_DEFAULT): likewise.
(SQL_CL_END): likewise.
(SQL_CL_START): likewise.
(SQL_COL_PRED_BASIC): likewise.
(SQL_COL_PRED_CHAR): likewise.
(SQL_COLUMN_DRIVER_START): likewise.
(SQL_COLUMN_IGNORE): likewise.
(SQL_COLUMN_NUMBER_UNKNOWN): likewise.
(SQL_CONVERT_GUID): likewise.
(SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
(SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
(SQL_CONVERT_WCHAR): likewise.
(SQL_CONVERT_WLONGVARCHAR): likewise.
(SQL_CONVERT_WVARCHAR): likewise.
(SQL_CP_DEFAULT): likewise.
(SQL_CP_MATCH_DEFAULT): likewise.
(SQL_CP_OFF): likewise.
(SQL_CP_ONE_PER_DRIVER): likewise.
(SQL_CP_ONE_PER_HENV): likewise.
(SQL_CP_RELAXED_MATCH): likewise.
(SQL_CP_STRICT_MATCH): likewise.
(SQL_CREATE_ASSERTION): likewise.
(SQL_CREATE_CHARACTER_SET): likewise.
(SQL_CREATE_COLLATION): likewise.
(SQL_CREATE_DOMAIN): likewise.
(SQL_CREATE_SCHEMA): likewise.
(SQL_CREATE_TABLE): likewise.
(SQL_CREATE_TRANSLATION): likewise.
(SQL_CREATE_VIEW): likewise.
(SQL_CS_AUTHORIZATION): likewise.
(SQL_CS_CREATE_SCHEMA): likewise.
(SQL_CS_DEFAULT_CHARACTER_SET): likewise.
(SQL_CT_COLUMN_COLLATION): likewise.
(SQL_CT_COLUMN_CONSTRAINT): likewise.
(SQL_CT_COLUMN_DEFAULT): likewise.
(SQL_CT_COMMIT_DELETE): likewise.
(SQL_CT_COMMIT_PRESERVE): likewise.
(SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
(SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
(SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
(SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
(SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
(SQL_CT_CREATE_TABLE): likewise.
(SQL_CT_GLOBAL_TEMPORARY): likewise.
(SQL_CT_LOCAL_TEMPORARY): likewise.
(SQL_CT_TABLE_CONSTRAINT): likewise.
(SQL_CTR_CREATE_TRANSLATION): likewise.
(SQL_CU_DML_STATEMENTS): likewise.
(SQL_CU_INDEX_DEFINITION): likewise.
(SQL_CU_PRIVILEGE_DEFINITION): likewise.
(SQL_CU_PROCEDURE_INVOCATION): likewise.
(SQL_CU_TABLE_DEFINITION): likewise.
(SQL_CVT_GUID): likewise.
(SQL_CVT_INTERVAL_DAY_TIME): likewise.
(SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
(SQL_CVT_WCHAR): likewise.
(SQL_CVT_WLONGVARCHAR): likewise.
(SQL_CVT_WVARCHAR): likewise.
(SQL_DA_DROP_ASSERTION): likewise.
(SQL_DATETIME_LITERALS): likewise.
(SQL_DB_DEFAULT): likewise.
(SQL_DB_DISCONNECT): likewise.
(SQL_DB_RETURN_TO_POOL): likewise.
(SQL_DC_DROP_COLLATION): likewise.
(SQL_DCS_DROP_CHARACTER_SET): likewise.
(SQL_DD_CASCADE): likewise.
(SQL_DD_DROP_DOMAIN): likewise.
(SQL_DD_RESTRICT): likewise.
(SQL_DDL_INDEX): likewise.
(SQL_DELETE_BY_BOOKMARK): likewise.
(SQL_DESC_ARRAY_SIZE): likewise.
(SQL_DESC_ARRAY_STATUS_PTR): likewise.
(SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
(SQL_DESC_BASE_COLUMN_NAME): likewise.
(SQL_DESC_BASE_TABLE_NAME): likewise.
(SQL_DESC_BIND_OFFSET_PTR): likewise.
(SQL_DESC_BIND_TYPE): likewise.
(SQL_DESC_CASE_SENSITIVE): likewise.
(SQL_DESC_CATALOG_NAME): likewise.
(SQL_DESC_CONCISE_TYPE): likewise.
(SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
(SQL_DESC_DISPLAY_SIZE): likewise.
(SQL_DESC_FIXED_PREC_SCALE): likewise.
(SQL_DESC_LABEL): likewise.
(SQL_DESC_LITERAL_PREFIX): likewise.
(SQL_DESC_LITERAL_SUFFIX): likewise.
(SQL_DESC_LOCAL_TYPE_NAME): likewise.
(SQL_DESC_MAXIMUM_SCALE): likewise.
(SQL_DESC_MINIMUM_SCALE): likewise.
(SQL_DESC_NUM_PREC_RADIX): likewise.
(SQL_DESC_PARAMETER_TYPE): likewise.
(SQL_DESC_ROWS_PROCESSED_PTR): likewise.
(SQL_DESC_SCHEMA_NAME): likewise.
(SQL_DESC_SEARCHABLE): likewise.
(SQL_DESC_TABLE_NAME): likewise.
(SQL_DESC_TYPE_NAME): likewise.
(SQL_DESC_UNSIGNED): likewise.
(SQL_DESC_UPDATABLE): likewise.
(SQL_DI_CREATE_INDEX): likewise.
(SQL_DI_DROP_INDEX): likewise.
(SQL_DIAG_COLUMN_NUMBER): likewise.
(SQL_DIAG_CURSOR_ROW_COUNT): likewise.
(SQL_DIAG_ROW_NUMBER): likewise.
(SQL_DL_SQL92_DATE): likewise.
(SQL_DL_SQL92_INTERVAL_DAY): likewise.
(SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
(SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
(SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
(SQL_DL_SQL92_INTERVAL_HOUR): likewise.
(SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
(SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
(SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
(SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
(SQL_DL_SQL92_INTERVAL_MONTH): likewise.
(SQL_DL_SQL92_INTERVAL_SECOND): likewise.
(SQL_DL_SQL92_INTERVAL_YEAR): likewise.
(SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
(SQL_DL_SQL92_TIME): likewise.
(SQL_DL_SQL92_TIMESTAMP): likewise.
(SQL_DM_VER): likewise.
(SQL_DRIVER_HDESC): likewise.
(SQL_DROP_ASSERTION): likewise.
(SQL_DROP_CHARACTER_SET): likewise.
(SQL_DROP_COLLATION): likewise.
(SQL_DROP_DOMAIN): likewise.
(SQL_DROP_SCHEMA): likewise.
(SQL_DROP_TABLE): likewise.
(SQL_DROP_TRANSLATION): likewise.
(SQL_DROP_VIEW): likewise.
(SQL_DS_CASCADE): likewise.
(SQL_DS_DROP_SCHEMA): likewise.
(SQL_DS_RESTRICT): likewise.
(SQL_DT_CASCADE): likewise.
(SQL_DT_DROP_TABLE): likewise.
(SQL_DT_RESTRICT): likewise.
(SQL_DTC_DONE): likewise.
(SQL_DTR_DROP_TRANSLATION): likewise.
(SQL_DV_CASCADE): likewise.
(SQL_DV_DROP_VIEW): likewise.
(SQL_DV_RESTRICT): likewise.
(SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
(SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
(SQL_EXT_API_LAST): likewise.
(SQL_EXT_API_START): likewise.
(SQL_FETCH_BY_BOOKMARK): likewise.
(SQL_FETCH_FIRST_SYSTEM): likewise.
(SQL_FETCH_FIRST_USER): likewise.
(SQL_FN_CVT_CAST): likewise.
(SQL_FN_STR_BIT_LENGTH): likewise.
(SQL_FN_STR_CHAR_LENGTH): likewise.
(SQL_FN_STR_CHARACTER_LENGTH): likewise.
(SQL_FN_STR_OCTET_LENGTH): likewise.
(SQL_FN_STR_POSITION): likewise.
(SQL_FN_TD_CURRENT_DATE): likewise.
(SQL_FN_TD_CURRENT_TIME): likewise.
(SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
(SQL_FN_TD_EXTRACT): likewise.
(SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
(SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
(SQL_FUNC_EXISTS(exists,api)): likewise.
(SQL_GB_COLLATE): likewise.
(SQL_HANDLE_SENV): likewise.
(SQL_IK_ALL): likewise.
(SQL_IK_ASC): likewise.
(SQL_IK_DESC): likewise.
(SQL_IK_NONE): likewise.
(SQL_INDEX_KEYWORDS): likewise.
(SQL_INFO_DRIVER_START): likewise.
(SQL_INFO_LAST): likewise.
(SQL_INFO_SCHEMA_VIEWS): likewise.
(SQL_INITIALLY_DEFERRED): likewise.
(SQL_INITIALLY_IMMEDIATE): likewise.
(SQL_INSERT_STATEMENT): likewise.
(SQL_INTERVAL): likewise.
(SQL_IS_INSERT_LITERALS): likewise.
(SQL_IS_INSERT_SEARCHED): likewise.
(SQL_IS_INTEGER): likewise.
(SQL_IS_POINTER): likewise.
(SQL_IS_SELECT_INTO): likewise.
(SQL_IS_SMALLINT): likewise.
(SQL_IS_UINTEGER): likewise.
(SQL_IS_USMALLINT): likewise.
(SQL_ISV_ASSERTIONS): likewise.
(SQL_ISV_CHARACTER_SETS): likewise.
(SQL_ISV_CHECK_CONSTRAINTS): likewise.
(SQL_ISV_COLLATIONS): likewise.
(SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
(SQL_ISV_COLUMN_PRIVILEGES): likewise.
(SQL_ISV_COLUMNS): likewise.
(SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
(SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
(SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
(SQL_ISV_DOMAINS): likewise.
(SQL_ISV_KEY_COLUMN_USAGE): likewise.
(SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
(SQL_ISV_SCHEMATA): likewise.
(SQL_ISV_SQL_LANGUAGES): likewise.
(SQL_ISV_TABLE_CONSTRAINTS): likewise.
(SQL_ISV_TABLE_PRIVILEGES): likewise.
(SQL_ISV_TABLES): likewise.
(SQL_ISV_TRANSLATIONS): likewise.
(SQL_ISV_USAGE_PRIVILEGES): likewise.
(SQL_ISV_VIEW_COLUMN_USAGE): likewise.
(SQL_ISV_VIEW_TABLE_USAGE): likewise.
(SQL_ISV_VIEWS): likewise.
(SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
(SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
(SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
(SQL_NO_COLUMN_NUMBER): likewise.
(SQL_NO_ROW_NUMBER): likewise.
(SQL_NOT_DEFERRABLE): likewise.
(SQL_NUM_EXTENSIONS): likewise.
(SQL_NUM_FUNCTIONS): likewise.
(SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
(SQL_OIC_CORE): likewise.
(SQL_OIC_LEVEL1): likewise.
(SQL_OIC_LEVEL2): likewise.
(SQL_OV_ODBC2): likewise.
(SQL_OV_ODBC3): likewise.
(SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
(SQL_PARAM_ARRAY_SELECTS): likewise.
(SQL_PARAM_BIND_BY_COLUMN): likewise.
(SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
(SQL_PARAM_DIAG_UNAVAILABLE): likewise.
(SQL_PARAM_ERROR): likewise.
(SQL_PARAM_IGNORE): likewise.
(SQL_PARAM_PROCEED): likewise.
(SQL_PARAM_SUCCESS): likewise.
(SQL_PARAM_SUCCESS_WITH_INFO): likewise.
(SQL_PARAM_UNUSED): likewise.
(SQL_PARC_BATCH): likewise.
(SQL_PARC_NO_BATCH): likewise.
(SQL_PAS_BATCH): likewise.
(SQL_PAS_NO_BATCH): likewise.
(SQL_PAS_NO_SELECT): likewise.
(SQL_ROW_IGNORE): likewise.
(SQL_ROW_NUMBER_UNKNOWN): likewise.
(SQL_ROW_PROCEED): likewise.
(SQL_ROW_SUCCESS_WITH_INFO): likewise.
(SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
(SQL_SC_SQL92_ENTRY): likewise.
(SQL_SC_SQL92_FULL): likewise.
(SQL_SC_SQL92_INTERMEDIATE): likewise.
(SQL_SCC_ISO92_CLI): likewise.
(SQL_SCC_XOPEN_CLI_VERSION1): likewise.
(SQL_SCHEMA_TERM): likewise.
(SQL_SCHEMA_USAGE): likewise.
(SQL_SDF_CURRENT_DATE): likewise.
(SQL_SDF_CURRENT_TIME): likewise.
(SQL_SDF_CURRENT_TIMESTAMP): likewise.
(SQL_SFKD_CASCADE): likewise.
(SQL_SFKD_NO_ACTION): likewise.
(SQL_SFKD_SET_DEFAULT): likewise.
(SQL_SFKD_SET_NULL): likewise.
(SQL_SFKU_CASCADE): likewise.
(SQL_SFKU_NO_ACTION): likewise.
(SQL_SFKU_SET_DEFAULT): likewise.
(SQL_SFKU_SET_NULL): likewise.
(SQL_SG_DELETE_TABLE): likewise.
(SQL_SG_INSERT_COLUMN): likewise.
(SQL_SG_INSERT_TABLE): likewise.
(SQL_SG_REFERENCES_COLUMN): likewise.
(SQL_SG_REFERENCES_TABLE): likewise.
(SQL_SG_SELECT_TABLE): likewise.
(SQL_SG_UPDATE_COLUMN): likewise.
(SQL_SG_UPDATE_TABLE): likewise.
(SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
(SQL_SG_USAGE_ON_COLLATION): likewise.
(SQL_SG_USAGE_ON_DOMAIN): likewise.
(SQL_SG_USAGE_ON_TRANSLATION): likewise.
(SQL_SG_WITH_GRANT_OPTION): likewise.
(SQL_SNVF_BIT_LENGTH): likewise.
(SQL_SNVF_CHAR_LENGTH): likewise.
(SQL_SNVF_CHARACTER_LENGTH): likewise.
(SQL_SNVF_EXTRACT): likewise.
(SQL_SNVF_OCTET_LENGTH): likewise.
(SQL_SNVF_POSITION): likewise.
(SQL_SP_BETWEEN): likewise.
(SQL_SP_COMPARISON): likewise.
(SQL_SP_EXISTS): likewise.
(SQL_SP_IN): likewise.
(SQL_SP_ISNOTNULL): likewise.
(SQL_SP_ISNULL): likewise.
(SQL_SP_LIKE): likewise.
(SQL_SP_MATCH_FULL): likewise.
(SQL_SP_MATCH_PARTIAL): likewise.
(SQL_SP_MATCH_UNIQUE_FULL): likewise.
(SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
(SQL_SP_OVERLAPS): likewise.
(SQL_SP_QUANTIFIED_COMPARISON): likewise.
(SQL_SP_UNIQUE): likewise.
(SQL_SQL_CONFORMANCE): likewise.
(SQL_SQL92_DATETIME_FUNCTIONS): likewise.
(SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
(SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
(SQL_SQL92_GRANT): likewise.
(SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
(SQL_SQL92_PREDICATES): likewise.
(SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
(SQL_SQL92_REVOKE): likewise.
(SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
(SQL_SQL92_STRING_FUNCTIONS): likewise.
(SQL_SQL92_VALUE_EXPRESSIONS): likewise.
(SQL_SR_CASCADE): likewise.
(SQL_SR_DELETE_TABLE): likewise.
(SQL_SR_GRANT_OPTION_FOR): likewise.
(SQL_SR_INSERT_COLUMN): likewise.
(SQL_SR_INSERT_TABLE): likewise.
(SQL_SR_REFERENCES_COLUMN): likewise.
(SQL_SR_REFERENCES_TABLE): likewise.
(SQL_SR_RESTRICT): likewise.
(SQL_SR_SELECT_TABLE): likewise.
(SQL_SR_UPDATE_COLUMN): likewise.
(SQL_SR_UPDATE_TABLE): likewise.
(SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
(SQL_SR_USAGE_ON_COLLATION): likewise.
(SQL_SR_USAGE_ON_DOMAIN): likewise.
(SQL_SR_USAGE_ON_TRANSLATION): likewise.
(SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
(SQL_SRJO_CROSS_JOIN): likewise.
(SQL_SRJO_EXCEPT_JOIN): likewise.
(SQL_SRJO_FULL_OUTER_JOIN): likewise.
(SQL_SRJO_INNER_JOIN): likewise.
(SQL_SRJO_INTERSECT_JOIN): likewise.
(SQL_SRJO_LEFT_OUTER_JOIN): likewise.
(SQL_SRJO_NATURAL_JOIN): likewise.
(SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
(SQL_SRJO_UNION_JOIN): likewise.
(SQL_SRVC_DEFAULT): likewise.
(SQL_SRVC_NULL): likewise.
(SQL_SRVC_ROW_SUBQUERY): likewise.
(SQL_SRVC_VALUE_EXPRESSION): likewise.
(SQL_SSF_CONVERT): likewise.
(SQL_SSF_LOWER): likewise.
(SQL_SSF_SUBSTRING): likewise.
(SQL_SSF_TRANSLATE): likewise.
(SQL_SSF_TRIM_BOTH): likewise.
(SQL_SSF_TRIM_LEADING): likewise.
(SQL_SSF_TRIM_TRAILING): likewise.
(SQL_SSF_UPPER): likewise.
(SQL_STANDARD_CLI_CONFORMANCE): likewise.
(SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
(SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
(SQL_SU_DML_STATEMENTS): likewise.
(SQL_SU_INDEX_DEFINITION): likewise.
(SQL_SU_PRIVILEGE_DEFINITION): likewise.
(SQL_SU_PROCEDURE_INVOCATION): likewise.
(SQL_SU_TABLE_DEFINITION): likewise.
(SQL_SVE_CASE): likewise.
(SQL_SVE_CAST): likewise.
(SQL_SVE_COALESCE): likewise.
(SQL_SVE_NULLIF): likewise.
(SQL_UB_FIXED): likewise.
(SQL_UB_VARIABLE): likewise.
(SQL_UNION_STATEMENT): likewise.
(SQL_UPDATE_BY_BOOKMARK): likewise.
(SQL_US_UNION): likewise.
(SQL_US_UNION_ALL): likewise.
(SQL_DESC_ROWVER): likewise.
(SQL_GUID): likewise.
(SQL_C_GUID): likewise.
(ODBC_STD): likewise.
(SQLAllocHandle): likewise.
(SQLAllocEnv(p)): likewise.
(SQL_YEAR): likewise.
(SQL_MONTH): likewise.
(SQL_DAY): likewise.
(SQL_HOUR): likewise.
(SQL_MINUTE): likewise.
(SQL_SECOND): likewise.
(SQL_YEAR_TO_MONTH): likewise.
(SQL_DAY_TO_HOUR): likewise.
(SQL_DAY_TO_MINUTE): likewise.
(SQL_DAY_TO_SECOND): likewise.
(SQL_HOUR_TO_MINUTE): likewise.
(SQL_HOUR_TO_SECOND): likewise.
(SQL_MINUTE_TO_SECOND): likewise.
(SQL_ATTR_ANSI_APP): likewise.
(SQL_AA_TRUE): likewise.
(SQL_AA_FALSE): likewise.

* include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
(struct tagSQL_YEAR_MONTH): add for ODBC3.x.
(struct tagSQL_DAY_SECOND): likewise.
(struct tagSQL_INTERVAL_STRUCT): likewise.
(struct tagSQL_NUMERIC_STRUCT): likewise.
(struct tagSQLGUID): add for 0DBC3.50.
(enum SQLINTERVAL): add for ODBC3.x.
(SQLWCHAR): add typedef.
(SQLTCHAR): add typedef, conditional on UNICODE.
(SQLLEN): add typedef for _WIN64, define for _WIN32.
(SQLULEN): likewise.
(SQLROWOFFSET): likewise.
(SQLROWCOUNT): likewise.
(SQLTRANSID): likewise.
(SQLSETPOSIROW): likewise.
(SQLHANDLE): add ODBC3.x typedef.
(SQLHDESC): likewise.
(SQLDATE): likewise.
(SQLDECIMAL): likewise.
(SQLDOUBLE): likewise.
(SQLFLOAT): likewise.
(SQLNUMERIC): likewise.
(SQLREAL): likewise.
(SQLTIME): likewise.
(SQLTIMESTAMP): likewise.
(SQLVARCHAR): likewise.
(SQLBIGINT): likewise.
(SQLUBIGINT): likewise.
(SQL_DATE_STRUCT): likewise.
(SQL_TIME_STRUCT): likewise.
(SQL_TIMESTAMP_STRUCT): likewise.
(ODBCINT64): add ODBC3.x define.

* lib/odbc32.def : regenerate.

23 years ago* include/cygwin/version.h: Bump API version.
Christopher Faylor [Sun, 28 Jan 2001 06:26:50 +0000 (06:26 +0000)]
* include/cygwin/version.h: Bump API version.

23 years ago* cygheap.cc (init_cheap): Move username initialization.
Christopher Faylor [Sun, 28 Jan 2001 06:23:42 +0000 (06:23 +0000)]
* cygheap.cc (init_cheap): Move username initialization.
(cygheap_init): Here.
* shared_info.h (mount_info): Add a sys_mount_table_counter field.
(shared_info): Ditto.
* path.cc (mount_info::conv_to_win32_path): Check that our mount table is in
sync with the system mount table and reinitialize it if not.
(mount_info::add_reg_mount): Bump sys_mount_table counters if the system mount
table changes.
(mount_info::del_reg_mount): Ditto.
(mount_info::write_cygdrive_info_to_registry): Ditto.
(mount_info::remove_cygdrive_info_from_registry): Ditto.

23 years agoThroughout, change 'cygwin_shared.mount' to 'mount_table'.
Christopher Faylor [Sun, 28 Jan 2001 05:51:15 +0000 (05:51 +0000)]
Throughout, change 'cygwin_shared.mount' to 'mount_table'.
* child_info.h (child_info): Move shared_h, console_h to cygheap.  Add mount_h.
* cygheap.h (init_cygheap): Add shared_h, console_h.
* cygheap.cc (init_cheap): Initialize heap at a fixed location after the shared
memory regions.  Initialize cygheap->user name here.
* dcrt0.cc (dll_crt0_1): Call getpagesize () to initialize constants.  Remove
cygheap_init since it is done in shared_init now.
(_dll_crt0): Initialize mount_h, remove shared_h and console_h initialization.
* fhandler_console.cc (console_shared_h): Eliminate.
(get_tty_stuff): Use cygheap->console_h rather than console_shared_h.
* heap.cc (heap_init): Use page size constant calculated earlier in
initialization.
* shared.cc: Eliminate cygwin_shared_h.  Add cygwin_mount_h.
(mount_table_init): New function for initializing a user mount table.
(open_shared_file_map): Use constant for shared memory region.  Initialize
cygheap and mount table here.
(open_shared): Improve debugging output.
(shared_info::initialize): Eliminate call to mount.init.
(shared_terminate): Use cygheap->shared_h.  Close cygwin_mount_h.
(open_shared_file_map): Eliminate.
* shared_info.h (mount_info): Add a version field.
(shared_align_past): New macro for calculating location for shared memory
regions.
* sigproc.cc (init_child_info): Eliminate shared_h, console_h.
* spawn.cc (spawn_guts): Pass on cygwin_mount_h iff not a different user.
* syscalls.cc (system_info): New global holding system memory defaults.
(getpagesize): Use system_info.
* uinfo.cc (internal_getlogin): Only fill in user name if nonexistent.
* winsup.h: Declare system_info.
* passwd.cc (read_etc_passwd): Use cygheap->user.name () rather than retrieving
the name again.

23 years ago * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
Michael Sokolov [Sat, 27 Jan 2001 19:36:45 +0000 (19:36 +0000)]
* ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
Don't unset, it's non-portable and no longer necessary, set to empty
instead.

23 years ago * ltconfig: Shell portability fix for the tagname validity check.
Michael Sokolov [Sat, 27 Jan 2001 19:34:13 +0000 (19:34 +0000)]
* ltconfig: Shell portability fix for the tagname validity check.

23 years ago * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
Michael Sokolov [Sat, 27 Jan 2001 19:29:31 +0000 (19:29 +0000)]
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.

23 years ago* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
Alexandre Oliva [Sat, 27 Jan 2001 19:22:59 +0000 (19:22 +0000)]
* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
* ltcf-cxx.sh, ltcf-gcj.sh: Likewise.

This page took 0.081115 seconds and 5 git commands to generate.