Added prototypes and functions to initialize the logger client and associated mutex.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@594 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-06-20 18:32:08 +00:00
parent fb5945653d
commit 720fd25e8c
4 changed files with 67 additions and 0 deletions

View File

@@ -184,6 +184,13 @@ RCODE FLMAPI ftkStartup( void)
setrlimit( RLIMIT_FSIZE, &rlim);
#endif
// Setup logger
if (RC_BAD( rc = f_loggerInit()))
{
goto Exit;
}
Exit:
@@ -224,6 +231,8 @@ void FLMAPI ftkShutdown( void)
{
gv_pXml->Release();
}
f_loggerShutdown();
f_freeRandomGenerator();
f_freeCharMappingTables();