这个警告怎么解决?
在程序中加载动态库中的函数时用到如下代码
TIDETIME Time; //数据结构 //头文件中定义
//调用的函数 //头文件中引用
typedef TIDETIME __stdcall TideTime(double,double,short,short,short);
HINSTANCE h_GetLib;
TideTime *TTime;
h_GetLib = ::LoadLibrary("CalTideTime.dll");
//警告出现在下行
TTime =(TideTime*)::GetProcAddress(h_GetLib, "TideTime");
Time = (*TTime)(t_Lon, t_Lat, t_Year, t_Month, t_Date);
//出现的警告
D:\Tide\TimeForecast.cpp(114) : warning C4550: expression evaluates to a function which is missing an argument list
请问这个警告时什么意思?怎么解决?