|
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 GetUsingFlashVersion [deprecated]
Syntax
[ C++ ]
DWORD WINAPI GetUsingFlashVersion(); Description
Returns an using version of the Flash. Here's an example of how to use this function: [ C++ ]
#include "f_in_box.h"
DWORD dwUsingFlashVersion = GetUsingFlashVersion();
TCHAR lpszBuffer[1024] = { 0 };
wsprintf(lpszBuffer,
_T("Using version: %d.%d.%d.%d\n"),
HIBYTE(HIWORD(dwUsingFlashVersion)),
LOBYTE(HIWORD(dwUsingFlashVersion)),
HIBYTE(LOWORD(dwUsingFlashVersion)),
LOBYTE(LOWORD(dwUsingFlashVersion)));
OutputDebugString(lpszBuffer);
Copyright © 2004 - 2008 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
|