diff options
author | Mathias Agopian <mathias@google.com> | 2009-08-13 17:57:53 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2009-08-13 18:27:10 -0700 |
commit | 238a66e67b155d7e1fcdb19b672ffc0ae4a6fc94 (patch) | |
tree | 64bc22ea6169a05f1dc9ba6b1bee591e47fbd74e /include/private | |
parent | ccde199f7ce916e42a45b5a50e937d9c17904da2 (diff) | |
download | frameworks_native-238a66e67b155d7e1fcdb19b672ffc0ae4a6fc94.zip frameworks_native-238a66e67b155d7e1fcdb19b672ffc0ae4a6fc94.tar.gz frameworks_native-238a66e67b155d7e1fcdb19b672ffc0ae4a6fc94.tar.bz2 |
be more friendly with C
Diffstat (limited to 'include/private')
-rw-r--r-- | include/private/ui/android_natives_priv.h | 4 |
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; /*****************************************************************************/ |