码迷,mamicode.com
首页 > 数据库 > 详细

GetWordBit & MakeDWORD

时间:2017-02-13 13:48:53      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:span   dbi   stat   style   word   rdb   get   ret   nbsp   

static WORD GetWordBit(WORD word, int bit)
{
    WORD w = 0;
    WORD and = 1;

    if((bit<0)||(bit>15))
        return 0;

    w = word;
    and = and << bit;
    w = (w & and);
    w = w >> bit;

    return w;
}

static DWORD MakeDWORD(WORD wLowWord, WORD wHighWord)
{
    DWORD dw;

    dw = wHighWord;
    dw = (dw << 16);
    dw += wLowWord;

    return dw;
}

 

GetWordBit & MakeDWORD

标签:span   dbi   stat   style   word   rdb   get   ret   nbsp   

原文地址:http://www.cnblogs.com/micq/p/6393210.html

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