I ported my project over from Visual Studio 2012 to 2013 and sqlite.c will not compile in it. I\'m receiving this compile-time error:
error C4996: \'GetVersi
Actually C4996 is a warning, but sometimes it behaves as an error. Anyways, you can just disable it, by using the /wd4996 compiler option, or using the pragma:
#pragma warning(disable: 4996)