Added FTK console I/O routines to support FLAIM utilities. Misc. changes to the slab allocator.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@505 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-06-05 19:13:55 +00:00
parent 5fa1801ce9
commit f672e7590f
10 changed files with 424 additions and 355 deletions

View File

@@ -753,6 +753,20 @@ void FLMAPI FTXSetRefreshState(
f_mutexUnlock( gv_pFtxInfo->hFtxMutex);
}
/****************************************************************************
Desc:
****************************************************************************/
FLMBOOL FLMAPI FTXRefreshDisabled( void)
{
FLMBOOL bDisabled;
f_mutexLock( gv_pFtxInfo->hFtxMutex);
bDisabled = gv_pFtxInfo->bRefreshDisabled;
f_mutexUnlock( gv_pFtxInfo->hFtxMutex);
return( bDisabled);
}
/****************************************************************************
Desc: Allows a keyboard handler to add a key to the FTX key buffer
****************************************************************************/