问题
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