void SG_sync_remote__push_end(
	SG_context* pCtx, 						 
	const char* pszPushId)
{
	SG_NULLARGCHECK_RETURN(pszPushId);

	SG_ERR_CHECK_RETURN(  SG_staging__cleanup__by_id(pCtx, pszPushId)  );
}
Пример #2
0
void SG_server__push_end(SG_context* pCtx,
						 SG_server * pServer,
						 const char* pPushId)
{
	SG_NULLARGCHECK_RETURN(pServer);
	SG_NULLARGCHECK_RETURN(pPushId);

	SG_ERR_CHECK_RETURN(  SG_staging__cleanup__by_id(pCtx, pPushId)  );
}