Files
Aerofoil/PortabilityLayer/PLErrorCodes.h

33 lines
354 B
C
Raw Normal View History

#pragma once
#ifndef __PL_ERROR_CODES_H__
#define __PL_ERROR_CODES_H__
2019-11-11 00:11:59 -05:00
2019-12-29 06:38:18 -05:00
namespace PLErrors
2019-11-11 00:11:59 -05:00
{
2019-12-29 06:38:18 -05:00
enum PLError
{
kNone = 0,
kInvalidParameter,
kFileHandlesExhausted,
kBadFileName,
kFileNotFound,
kAccessDenied,
kFileIsBusy,
2019-12-29 06:38:18 -05:00
kOutOfMemory,
kAudioError,
kIOError,
2019-12-29 22:12:11 -05:00
kResourceError,
2019-12-29 06:38:18 -05:00
};
}
typedef PLErrors::PLError PLError_t;
2019-11-11 00:11:59 -05:00
#endif