VLC 4.0.0-dev
Loading...
Searching...
No Matches
Collaboration diagram for Error codes:

Macros

#define VLC_SUCCESS   0
 No error.
 
#define VLC_EGENERIC   (-2 * (1 << (sizeof (int) * 8 - 2))) /* INT_MIN */
 Unspecified error.
 
#define VLC_ENOMEM   (-ENOMEM)
 Not enough memory.
 
#define VLC_ETIMEOUT   (-ETIMEDOUT)
 Timeout.
 
#define VLC_ENOENT   (-ENOENT)
 Not found.
 
#define VLC_EINVAL   (-EINVAL)
 Bad variable value.
 
#define VLC_EACCES   (-EACCES)
 Operation forbidden.
 
#define VLC_ENOTSUP   (-ENOTSUP)
 Operation not supported.
 

Detailed Description

Macro Definition Documentation

◆ VLC_EACCES

#define VLC_EACCES   (-EACCES)

Operation forbidden.

◆ VLC_EGENERIC

#define VLC_EGENERIC   (-2 * (1 << (sizeof (int) * 8 - 2))) /* INT_MIN */

Unspecified error.

◆ VLC_EINVAL

#define VLC_EINVAL   (-EINVAL)

Bad variable value.

◆ VLC_ENOENT

#define VLC_ENOENT   (-ENOENT)

Not found.

◆ VLC_ENOMEM

#define VLC_ENOMEM   (-ENOMEM)

Not enough memory.

◆ VLC_ENOTSUP

#define VLC_ENOTSUP   (-ENOTSUP)

Operation not supported.

◆ VLC_ETIMEOUT

#define VLC_ETIMEOUT   (-ETIMEDOUT)

Timeout.

◆ VLC_SUCCESS

#define VLC_SUCCESS   0

No error.