Commit f5de45aecca1bd12bf7a6a2dd71c424951543f3b

Ryan C. Gordon 2021-10-26T18:59:21

fnsince.pl: Found a few more incorrect versions.

diff --git a/build-scripts/fnsince.pl b/build-scripts/fnsince.pl
index 48e4b84..30a1d51 100755
--- a/build-scripts/fnsince.pl
+++ b/build-scripts/fnsince.pl
@@ -70,6 +70,8 @@ $funcs{'SDL_GetBasePath'} = '2.0.1';
 $funcs{'SDL_GetPrefPath'} = '2.0.1';
 $funcs{'SDL_UpdateYUVTexture'} = '2.0.1';
 $funcs{'SDL_GL_GetDrawableSize'} = '2.0.1';
+$funcs{'SDL_Direct3D9GetAdapterIndex'} = '2.0.1';
+$funcs{'SDL_RenderGetD3D9Device'} = '2.0.1';
 
 $funcs{'SDL_GetAssertionHandler'} = '2.0.2';
 $funcs{'SDL_GetDefaultAssertionHandler'} = '2.0.2';
@@ -85,6 +87,13 @@ $funcs{'SDL_asin'} = '2.0.2';
 $funcs{'SDL_vsscanf'} = '2.0.2';
 $funcs{'SDL_DetachThread'} = '2.0.2';
 $funcs{'SDL_GL_ResetAttributes'} = '2.0.2';
+$funcs{'SDL_DXGIGetOutputInfo'} = '2.0.2';
+
+# these are incorrect in the dynapi header, because we forgot to add them
+#  until a later release, but are available in the older release.
+$funcs{'SDL_WinRTGetFSPathUNICODE'} = '2.0.3';
+$funcs{'SDL_WinRTGetFSPathUTF8'} = '2.0.3';
+$funcs{'SDL_WinRTRunApp'} = '2.0.3';
 
 foreach my $release (@releases) {
     foreach my $fn (sort keys %funcs) {