From d1d6c60a124d780b02debd5f74295efd75d9e387 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Sun, 23 Feb 2025 16:32:28 -0800 Subject: [PATCH] Move ODBVER outside of deprecation block. --- druntime/src/core/sys/windows/sql.d | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/druntime/src/core/sys/windows/sql.d b/druntime/src/core/sys/windows/sql.d index 03272e9ea9..013d9f06e6 100644 --- a/druntime/src/core/sys/windows/sql.d +++ b/druntime/src/core/sys/windows/sql.d @@ -11,14 +11,15 @@ $(RED Warning: */ module core.sys.windows.sql; + +enum ODBCVER = 0x0400; + deprecated ("The ODBC 3.5 modules are deprecated. Please use the ODBC4 modules in the `etc.c.odbc` package."): version (Windows): public import core.sys.windows.sqltypes; import core.sys.windows.windef; -enum ODBCVER = 0x0351; - enum SQL_ACCESSIBLE_PROCEDURES=20; enum SQL_ACCESSIBLE_TABLES=19; enum SQL_ALL_TYPES=0;