Changed code to use a single FlmDbSystem object. Fixed utilities so that they build using FTK.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@405 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-10 22:27:54 +00:00
parent 62e33bcd7d
commit 8df295d049
30 changed files with 289 additions and 447 deletions

View File

@@ -437,11 +437,10 @@ RCODE rflGetDirAndPrefix(
const char * pszRflDirIn,
char * pszRflDirOut)
{
RCODE rc = NE_XFLM_OK;
char szDbPath [F_PATH_MAX_SIZE];
char szBaseName [F_FILENAME_SIZE];
char szPrefix [F_FILENAME_SIZE];
F_DbSystem dbSystem;
RCODE rc = NE_XFLM_OK;
char szDbPath [F_PATH_MAX_SIZE];
char szBaseName [F_FILENAME_SIZE];
char szPrefix [F_FILENAME_SIZE];
// Parse the database name into directory and base name
@@ -453,7 +452,7 @@ RCODE rflGetDirAndPrefix(
// Get the base path
F_DbSystem::getDbBasePath( szPrefix, szBaseName, NULL);
flmGetDbBasePath( szPrefix, szBaseName, NULL);
// Determine the RFL directory. If one was
// specified, it is whatever was specified.