GetEasyXVer

This function is used to get version of EasyX library.

const TCHAR* GetEasyXVer();

Parameters

None

Return Value

Returns version information for the current EasyX library.

Examples

The following snippet output of the current EasyX version:

// Character Set: MBCS
//
#include <stdio.h>
#include <graphics.h>

int main()
{
	TCHAR* s = GetEasyXVer();
	_tprintf("EasyX current version:%s\n", s);
}
(贡献者:Krissi  编辑