标签: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; }
标签:span dbi stat style word rdb get ret nbsp
原文地址:http://www.cnblogs.com/micq/p/6393210.html