RFX_BigInt error

二次信任 提交于 2019-12-13 18:04:26

问题


I have a field

_int64  m_initial_amount;

declared in the .h file and have a corresponding line

RFX_BigInt(pFX, _T("[initial_amount]"), m_initial_amount);

defined in the .cpp file

I am getting an error C2065: 'RFX_BigInt' : undeclared identifier

What is the error related to? Am I missing upon some header file, includes, libraries?

Note: I am compiling the code in VC++ 6.0?


回答1:


There is no RFX_xxxxx macro to transfer 64 bit integer - you have to get the raw data and convert it manually to a 64 bit integer. See documentation at http://msdn.microsoft.com/en-us/library/1z45tz8b.aspx, http://msdn.microsoft.com/en-us/library/ca5a16kd.aspx



来源:https://stackoverflow.com/questions/9770018/rfx-bigint-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!