"utils/Errors.h": include <stdint.h> for int32_t
.
No need for a Unix/Windows difference here. Bug: N/A Test: builds Change-Id: If7b27f939f9c13ef336d2015608f2a24db8cc96d
This commit is contained in:
parent
83093e7ef8
commit
9fbebc5d55
1 changed files with 8 additions and 15 deletions
|
@ -14,22 +14,19 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ANDROID_ERRORS_H
|
||||
#define ANDROID_ERRORS_H
|
||||
#pragma once
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <errno.h>
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
namespace android {
|
||||
|
||||
// use this type to return error codes
|
||||
#ifdef _WIN32
|
||||
typedef int status_t;
|
||||
#else
|
||||
typedef int32_t status_t;
|
||||
#endif
|
||||
|
||||
/* the MS C runtime lacks a few error codes */
|
||||
/**
|
||||
* The type used to return success/failure from frameworks APIs.
|
||||
* See the anonymous enum below for valid values.
|
||||
*/
|
||||
typedef int32_t status_t;
|
||||
|
||||
/*
|
||||
* Error codes.
|
||||
|
@ -82,7 +79,3 @@ enum {
|
|||
#endif
|
||||
|
||||
} // namespace android
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
#endif // ANDROID_ERRORS_H
|
||||
|
|
Loading…
Reference in a new issue