QMedia
![]() |
![]() |
QM_GetVersion(versionString; productName):error | |||
![]() |
versionString | String8 | Product version |
![]() |
productName | String255 | Product name |
![]() |
error | Longint | Error result |
Returns in versionString a string holding the current version of QMedia as well as the full product name in productName.
The versionString parameter follows the same format as the one returned by 4D's Application
Version command:
Characters | Description |
1 | F = final, B = beta, A = alpha, D = development |
2-3-4 | Internal number |
5-6 | Version number |
7 | Update number |
8 | Revision number |
For example, the string "B0020100" stands for the Beta 2 of version 1.0.
Example
C_STRING(8;$QMediaVersion) C_STRING(255;$QMediaInfo) $err:=QM_GetVersion ($QMediaVersion;$QMediaInfo) |