diff --git a/flaim/util/flm_lutl.cpp b/flaim/util/flm_lutl.cpp index 2fdf006..0b37dd1 100644 --- a/flaim/util/flm_lutl.cpp +++ b/flaim/util/flm_lutl.cpp @@ -185,7 +185,7 @@ Desc: Thread that displays the current status of all indexes in a database Note: The caller must open the database and pass a handle to the thread. The handle will be closed when the thread exits. *****************************************************************************/ -RCODE flstIndexManagerThread( +RCODE FLMAPI flstIndexManagerThread( IF_Thread * pThread) { F_DynamicList * pList = f_new F_DynamicList; @@ -751,7 +751,7 @@ Exit: Desc: Thread that displays the current status of a database's cache Note: The caller must pass a valid share handle to the thread on startup. *****************************************************************************/ -RCODE flstMemoryManagerThread( +RCODE FLMAPI flstMemoryManagerThread( IF_Thread * pThread) { F_DynamicList * pList = f_new F_DynamicList; @@ -1071,7 +1071,7 @@ Transmission_Error: /**************************************************************************** Desc: Thread that displays the current status of a database's tracker thread *****************************************************************************/ -RCODE flstTrackerMonitorThread( +RCODE FLMAPI flstTrackerMonitorThread( IF_Thread * pThread) { F_DynamicList * pList = f_new F_DynamicList; diff --git a/flaim/util/flm_lutl.h b/flaim/util/flm_lutl.h index 3cc5fbf..20ef815 100644 --- a/flaim/util/flm_lutl.h +++ b/flaim/util/flm_lutl.h @@ -24,11 +24,11 @@ #include "flm_dlst.h" -RCODE flstIndexManagerThread( +RCODE FLMAPI flstIndexManagerThread( IF_Thread * pThread); -RCODE flstMemoryManagerThread( +RCODE FLMAPI flstMemoryManagerThread( IF_Thread * pThread); -RCODE flstTrackerMonitorThread( +RCODE FLMAPI flstTrackerMonitorThread( IF_Thread * pThread);