VLC 4.0.0-dev
Collaboration diagram for Error codes:

Macros

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

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.