Fixed compilation error #include <android/*h>

Fixed compilation error when header in #include <android/*h> is
included alone.

Fix for rect.h already exists in $ANDROID/frameworks/native/include/android

Change-Id: I7c49e044507581c5ad591f26f99cda6870b411c5
This commit is contained in:
Andrew Hsieh
2012-04-16 14:17:41 +08:00
parent 31446e98dd
commit e6c0176071
2 changed files with 7 additions and 0 deletions

View File

@@ -18,6 +18,8 @@
#ifndef ANDROID_ASSET_MANAGER_H
#define ANDROID_ASSET_MANAGER_H
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif

View File

@@ -18,11 +18,16 @@
#ifndef ANDROID_RECT_H
#define ANDROID_RECT_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ARect {
#ifdef __cplusplus
typedef int32_t value_type;
#endif
int32_t left;
int32_t top;
int32_t right;