private static extern void xflaim_Db_getCheckpointInfo( IntPtr pDb, XFLM_CHECKPOINT_INFO pCheckpointInfo);
//----------------------------------------------------------------------------- // getCheckpointInfo //----------------------------------------------------------------------------- /// <summary> /// Get information about the checkpoint thread. /// </summary> /// <returns>Returns information about what the checkpoint thread is doing.</returns> public XFLM_CHECKPOINT_INFO getCheckpointInfo() { XFLM_CHECKPOINT_INFO checkpointInfo = new XFLM_CHECKPOINT_INFO(); xflaim_Db_getCheckpointInfo( m_pDb, checkpointInfo); return( checkpointInfo); }