码迷,mamicode.com
首页 > 移动开发 > 详细

Android buffer_handle_t的定义(转载)

时间:2014-05-26 16:14:38      阅读:574      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   c   blog   http   

转自:http://www.cnblogs.com/eustoma/archive/2012/06/08/2541416.html

1. buffer_handle_t

文件位置:system\core\include\system\window.h

typedef const native_handle_t* buffer_handle_t;

2. native_handle_t

文件位置:system\core\include\cutils\native_handle.h

typedef struct native_handle
{
    int version;        /* sizeof(native_handle_t) */
    int numFds;       /* number of file-descriptors at &data[0] */
    int numInts;      /* number of ints at &data[numFds] */
    int data[0];        /* numFds + numInts ints */
} native_handle_t;

Android buffer_handle_t的定义(转载),布布扣,bubuko.com

Android buffer_handle_t的定义(转载)

标签:des   android   style   c   blog   http   

原文地址:http://www.cnblogs.com/lance-ehf/p/3746202.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!