You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
635 B

#include "libplatform/impl.h"
namespace mp4v2 { namespace platform { namespace sys {
///////////////////////////////////////////////////////////////////////////////
const char*
getErrorStr( int errno_ )
{
return std::strerror( errno_ );
}
///////////////////////////////////////////////////////////////////////////////
int
getLastError()
{
return errno;
}
///////////////////////////////////////////////////////////////////////////////
const char*
getLastErrorStr()
{
return strerror( errno );
}
///////////////////////////////////////////////////////////////////////////////
}}} // namespace mp4v2::platform::sys