Mismactch DirectX Version

来源:百度知道 编辑:UC知道 时间:2024/05/16 09:50:56
Mismactch DirectX Version什么意思啊?

通过DirectOS xtra插件便可得到DirectX version
on GetDirectXVersion
vDirectX = dosReadReg ("HKEY_LOCAL_MACHINE", "Software\Microsoft\DirectX", "Version")
if (vDirectX = "") then
if (dosGetLastError()) then
put "Can't obtain the DirectX version. DirectX may not be installed, error # "&dosGetLastError()
else
put "DirectX version information is not stored as expected."
end if
exit
end if
set the itemDelimiter to "."
put "DirectX version is " & item 2 of vDirectX & "." & item 3 of vDirectX
end