40#if !defined (PLIBSYS_H_INSIDE) && !defined (PLIBSYS_COMPILATION)
41# error "Header files shouldn't be included directly, consider using <plibsys.h> instead."
44#ifndef PLIBSYS_HEADER_PERRORTYPES_H
45#define PLIBSYS_HEADER_PERRORTYPES_H
enum PErrorIO_ PErrorIO
Enum with IO errors.
enum PErrorIPC_ PErrorIPC
Enum with IPC errors.
PErrorIO_
Enum with IO errors.
@ P_ERROR_IO_NOT_IMPLEMENTED
Operation is not implemented.
@ P_ERROR_IO_FAILED
General error.
@ P_ERROR_IO_NAMETOOLONG
Specified name is too long.
@ P_ERROR_IO_NOT_EXISTS
Specified entry doesn't exist.
@ P_ERROR_IO_EXISTS
Specified entry already exists.
@ P_ERROR_IO_INVALID_ARGUMENT
Invalid argument specified.
@ P_ERROR_IO_NOT_SUPPORTED
Operation not supported.
@ P_ERROR_IO_NO_MORE
No more data left.
@ P_ERROR_IO_IS_DIRECTORY
Trying to open directory for writing.
@ P_ERROR_IO_QUOTA
User quota exceeded.
@ P_ERROR_IO_NONE
No error.
@ P_ERROR_IO_NOT_AVAILABLE
Resource isn't available.
@ P_ERROR_IO_ADDRESS_IN_USE
Address is already under usage.
@ P_ERROR_IO_IN_PROGRESS
Operation in progress.
@ P_ERROR_IO_ACCESS_DENIED
Access denied.
@ P_ERROR_IO_CONNECTED
Already connected.
@ P_ERROR_IO_NOT_CONNECTED
Connection required first.
@ P_ERROR_IO_NOT_DIRECTORY
Component of the path prefix is not a directory.
@ P_ERROR_IO_TIMED_OUT
Operation timed out.
@ P_ERROR_IO_CONNECTION_REFUSED
Connection refused.
@ P_ERROR_IO_WOULD_BLOCK
Operation cannot be completed immediatly.
@ P_ERROR_IO_NO_RESOURCES
Operating system hasn't enough resources.
@ P_ERROR_IO_ABORTED
Operation aborted.
PErrorIPC_
Enum with IPC errors.
@ P_ERROR_IPC_NOT_IMPLEMENTED
Operation is not implemented (for example when using some filesystems).
@ P_ERROR_IPC_NAMETOOLONG
Object name is too long.
@ P_ERROR_IPC_NO_RESOURCES
Not enough system resources or memory to perform operation.
@ P_ERROR_IPC_OVERFLOW
Semaphore value overflow.
@ P_ERROR_IPC_FAILED
General error.
@ P_ERROR_IPC_ACCESS
Not enough rights to access object or its key.
@ P_ERROR_IPC_EXISTS
Object already exists and no proper open flags were specified.
@ P_ERROR_IPC_INVALID_ARGUMENT
Invalid argument (parameter) specified.
@ P_ERROR_IPC_NONE
No error.
@ P_ERROR_IPC_DEADLOCK
Deadlock detected.
@ P_ERROR_IPC_NOT_EXISTS
Object doesn't exist or was removed before, and no proper create flags were specified.
enum PErrorDomain_ PErrorDomain
Enum with error domains.
PErrorDomain_
Enum with error domains.
@ P_ERROR_DOMAIN_IO
Input/output domain.
@ P_ERROR_DOMAIN_IPC
Interprocess communication domain.
@ P_ERROR_DOMAIN_NONE
No domain was specified.
#define P_BEGIN_DECLS
Starts .h file declarations to be exported as C functions.
#define P_END_DECLS
Closes .h file declarations to be exported as C functions, should be always used after P_BEGIN_DECLS.