The RECORDS_STATUS enumerated type is used for an output parameter of a Slow Sync request. It indicates whether the server has more records in the scope of the replicated folder over which Slow Sync is performed.
typedef enum
{
RECORDS_STATUS_DONE = 0,
RECORDS_STATUS_MORE = 1
} RECORDS_STATUS;
RECORDS_STATUS_DONE: No more records are waiting to be transmitted on the server.
RECORDS_STATUS_MORE: More records are waiting to be transmitted on the server.