Quick links:
F-IN-BOX DLL Edition Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
F-IN-BOX DLL Edition Help >> Extensions >> Functions GetInstalledFlashVersionEx
Syntax
[ C++ ]
DWORD WINAPI GetInstalledFlashVersionEx(SFPCVersion* pVersion); typedef struct SFPCVersion { WORD v[4]; } SFPCVersion; Description
Returns an installed version of the Flash. Here's an example of how to use this function: [ C++ ]
// Get flash version SFPCVersion FlashVersion; GetInstalledFlashVersionEx(&FlashVersion); // Compare major version if (FlashVersion.v[3] < 8) { TCHAR szMsg[1024]; wsprintf(szMsg, _T("External API is supported only by Flash 8 and higher\nCurrent version: %d.%d.%d.%d"), FlashVersion.v[3], FlashVersion.v[2], FlashVersion.v[1], FlashVersion.v[0]); AfxMessageBox(szMsg); return FALSE; } Copyright © Softanics. All rights reserved. F-IN-BOX is a trademark of Softanics. Macromedia and Shockwave Flash are trademarks of Adobe
Quick links:
F-IN-BOX DLL Edition Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
|