On Fri, Nov 4, 2016 at 7:28 PM, Mark Benningfield <mbenningfie...@cox.net>
wrote:

> Hello all.
>
> I'm building SQLite from the amalgamation:
>
> #define SQLITE_VERSION        "3.14.1"
> #define SQLITE_VERSION_NUMBER 3014001
> #define SQLITE_SOURCE_ID      "2016-08-11 18:53:32
> a12d8059770df4bca59e321c266410344242bf7b"
>
> I'm getting the following compiler warnings:
>
> Warning    C4996    'GetVersionExA': was declared deprecated sqlite3
> Warning    C4996    'GetVersionExW': was declared deprecated sqlite3
>
> Is this something I should be concerned about with deployment on Windows
> 8/10 boxes?
>

As long as SQLite isn't using APIs introduced with Windows 8 or later, it
shouldn't make a difference. Microsoft might call GetVersionEx "deprecated"
but it's still there and supported. The only catch is that it will
(apparently) forever report it is an older version of the OS than it really
is.

-- 
Scott Robison
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to