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.
17 lines
508 B
17 lines
508 B
#ifndef MP4V2_PLATFORM_SYS_ERROR_H
|
|
#define MP4V2_PLATFORM_SYS_ERROR_H
|
|
|
|
namespace mp4v2 { namespace platform { namespace sys {
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
MP4V2_EXPORT int getLastError ( );
|
|
MP4V2_EXPORT const char* getLastErrorStr ( );
|
|
MP4V2_EXPORT const char* getErrorStr ( int );
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
}}} // namespace mp4v2::platform::sys
|
|
|
|
#endif // MP4V2_PLATFORM_SYS_ERROR_H
|