Files
Aerofoil/PortabilityLayer/PLErrorCodes.h

34 lines
363 B
C
Raw Permalink 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,
kOutOfMemory,
kAudioError,
kIOError,
2019-12-29 22:12:11 -05:00
kResourceError,
2019-12-29 06:38:18 -05:00
kUserCancelled_TEMP,
};
}
typedef PLErrors::PLError PLError_t;
2019-11-11 00:11:59 -05:00
#endif