summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-08-13 17:57:53 -0700
committerMathias Agopian <mathias@google.com>2009-08-13 18:27:10 -0700
commit806a5fcb30abd2959381774e54f6dec79d6d86f4 (patch)
tree64013eadf94ce2cce6bd22dd2e34affb59981978
parent5a22b909c9e8fc0d9321dcc014706a790b26b971 (diff)
downloadframeworks_av-806a5fcb30abd2959381774e54f6dec79d6d86f4.zip
frameworks_av-806a5fcb30abd2959381774e54f6dec79d6d86f4.tar.gz
frameworks_av-806a5fcb30abd2959381774e54f6dec79d6d86f4.tar.bz2
be more friendly with C
-rw-r--r--include/private/ui/android_natives_priv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/private/ui/android_natives_priv.h b/include/private/ui/android_natives_priv.h
index ee843e9..9c92af8 100644
--- a/include/private/ui/android_natives_priv.h
+++ b/include/private/ui/android_natives_priv.h
@@ -25,7 +25,7 @@ extern "C" {
/*****************************************************************************/
-struct android_native_buffer_t
+typedef struct android_native_buffer_t
{
#ifdef __cplusplus
android_native_buffer_t() {
@@ -48,7 +48,7 @@ struct android_native_buffer_t
buffer_handle_t handle;
void* reserved_proc[8];
-};
+} android_native_buffer_t;
/*****************************************************************************/