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:
dsandersoremutah
2006-09-01 16:34:15 +00:00
parent 8350b37976
commit 24346739dd
27 changed files with 4376 additions and 1568 deletions

View File

@@ -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.