mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
32 lines
344 B
C++
32 lines
344 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,
|
|
|
|
kOutOfMemory,
|
|
|
|
kAudioError,
|
|
|
|
kIOError,
|
|
|
|
kUserCancelled_TEMP,
|
|
};
|
|
}
|
|
|
|
typedef PLErrors::PLError PLError_t;
|
|
|
|
#endif
|