Added support for storing 64 bit numbers
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@805 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
@@ -640,6 +640,12 @@ RCODE flmCurCopyQNode(
|
||||
break;
|
||||
}
|
||||
|
||||
case FLM_INT64_VAL:
|
||||
{
|
||||
pVal = (void *)&pSrcNode->pQAtom->val.i64Val;
|
||||
break;
|
||||
}
|
||||
|
||||
case FLM_REC_PTR_VAL:
|
||||
case FLM_UINT32_VAL:
|
||||
{
|
||||
@@ -647,6 +653,12 @@ RCODE flmCurCopyQNode(
|
||||
break;
|
||||
}
|
||||
|
||||
case FLM_UINT64_VAL:
|
||||
{
|
||||
pVal = (void *)&pSrcNode->pQAtom->val.ui64Val;
|
||||
break;
|
||||
}
|
||||
|
||||
case FLM_FLD_PATH:
|
||||
{
|
||||
// Count the number of fields in the field path.
|
||||
|
||||
Reference in New Issue
Block a user