GetEasyXVer
The function is used to get version for the current EasyX library.
TCHAR* GetEasyXVer();
Parameters
None
Return Value
Returns version information for the current EasyX library.
Examples
The following snippet output of the current EasyX version:
#include <stdio.h>
#include <graphics.h>
int main()
{
TCHAR* s = GetEasyXVer();
_tprintf("EasyX current version:%s\n", s);
}