我正在尝试使用OpenCl
in获取错误消息MQL5
。
int cl_ctx;
if ( ( cl_ctx = CLContextCreate( CL_USE_ANY ) ) == INVALID_HANDLE )
{
Print( "OpenCL not found: ", GetLastError() );
float pr = 2.0 / ( period + 1.0 );
result[0] = (float)price[position] * pr + prev_value * ( 1 - pr );
Print( result[0] );
return( result[0] );
}
我收到的消息是:
OpenCL not found: 5113
现在我不知道这是什么5113
意思。如何以人类可读的格式获取消息,以帮助我有效地调试我的程序?