Chinaunix首页 | 论坛 | 博客
  • 博客访问: 132730
  • 博文数量: 24
  • 博客积分: 1685
  • 博客等级: 上尉
  • 技术积分: 257
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-26 12:29
文章分类

全部博文(24)

文章存档

2014年(2)

2013年(1)

2011年(2)

2010年(10)

2009年(6)

2008年(3)

我的朋友

分类: C/C++

2008-09-19 22:03:04

Q
写一个带参数宏get_struct_addr_from_member_addr(p, stru, m),

能够根据任意结构实体的某一个成员的地址,算出该结构实体的地址,其中参数p是指向该

成员的指针,stru是该结构体,m是该成员。


A
#define get_struct_addr_from_member_addr(p, stru, m) \
(stru*)( (char*)p - (char*)&(((stru*)0)->m) )



zip -Z store bootanimation.zip part0/*PNG part1/*PNG desc.txt
OR
zip -0 bootanimation.zip part0/*PNG part1/*PNG desc.txt

use this command to create Android boot logo
阅读(765) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~