博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1长数组使用
阅读量:6327 次
发布时间:2019-06-22

本文共 447 字,大约阅读时间需要 1 分钟。

void *

GdItemAlloc(unsigned int size)
{
    return (void *)calloc(size, 1);
}

typedef struct {

    MWGDIOBJHDR    hdr;
    int        width;        /* width*/
    int        height;        /* height*/
    int        planes;        /* # planes*/
    int        bpp;        /* bits per pixel*/
    int        linelen;    /* bytes per line*/
    int        size;        /* allocated size in bytes*/
    char         bits[1];    /* beginning of bitmap*/
} MWBITMAPOBJ;

 

 

/* allocate gdi object*/

hbitmap = (MWBITMAPOBJ *)GdItemAlloc(sizeof(MWBITMAPOBJ)-1+size);

 

hbitmap->size = size;

转载地址:http://emgaa.baihongyu.com/

你可能感兴趣的文章
.NET网站自动浏览器分享,解决IIS6应用池回收后第一次访问慢问题
查看>>
关于验证码识别3
查看>>
【JavaScript】javascript常用的东西
查看>>
Cucumber 入门一
查看>>
c++ 单例模式
查看>>
JAVA反射机制
查看>>
Java几款性能分析工具的对比
查看>>
SVN使用教程总结
查看>>
Chrome各个版本小常识
查看>>
阿里云图片压缩上传代码
查看>>
JavaScript函数式编程
查看>>
C++_系列自学课程_第_6_课_bitset集_《C++ Primer 第四版》
查看>>
java对象数组
查看>>
Android中使用dimen定义尺寸(转)
查看>>
Webserver管理系列:11、注意默认的隐含共享
查看>>
《学习OpenCv》 笔记(1)
查看>>
温故而知新:Delegate,Action,Func,匿名方法,匿名委托,事件
查看>>
strtok、strtok_s、strtok_r 字符串切割函数
查看>>
shell编程基础(5)---循环指令
查看>>
八皇后问题
查看>>