Removed some unused parameters from the b-tree methods.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@466 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-05-25 21:22:30 +00:00
parent 5ee1da41d1
commit 76cb67c695
8 changed files with 17 additions and 29 deletions

View File

@@ -666,7 +666,6 @@ Desc: Function to insert an entry into the Btree.
****************************************************************************/
RCODE F_Btree::btInsertEntry(
const FLMBYTE * pucKey,
FLMUINT uiKeyBufSize,
FLMUINT uiKeyLen,
const FLMBYTE * pucData,
FLMUINT uiDataLen,
@@ -844,7 +843,6 @@ Desc: Function to remove an entry into the Btree.
****************************************************************************/
RCODE F_Btree::btRemoveEntry(
const FLMBYTE * pucKey,
FLMUINT uiKeyBufSize,
FLMUINT uiKeyLen)
{
RCODE rc = NE_XFLM_OK;
@@ -897,7 +895,6 @@ Desc: Function to provide a streaming interface for replacing large
****************************************************************************/
RCODE F_Btree::btReplaceEntry(
const FLMBYTE * pucKey,
FLMUINT uiKeyBufSize,
FLMUINT uiKeyLen,
const FLMBYTE * pucData,
FLMUINT uiDataLen,