mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
33 lines
354 B
C++
33 lines
354 B
C++
#pragma once
|
|
#ifndef __PL_ERROR_CODES_H__
|
|
#define __PL_ERROR_CODES_H__
|
|
|
|
|
|
namespace PLErrors
|
|
{
|
|
enum PLError
|
|
{
|
|
kNone = 0,
|
|
|
|
kInvalidParameter,
|
|
|
|
kFileHandlesExhausted,
|
|
kBadFileName,
|
|
kFileNotFound,
|
|
kAccessDenied,
|
|
kFileIsBusy,
|
|
|
|
kOutOfMemory,
|
|
|
|
kAudioError,
|
|
|
|
kIOError,
|
|
|
|
kResourceError,
|
|
};
|
|
}
|
|
|
|
typedef PLErrors::PLError PLError_t;
|
|
|
|
#endif
|