摘要: 1 <% 2 Private Const BITS_TO_A_BYTE = 8 3 Private Const BYTES_TO_A_WORD = 4 4 Private Const BITS_TO_A_WORD = 32 5 6 Private m_lOnBits(30) 7 Private m_l2Power(30) 8 9 Private Function LShift(lValue, iShiftBits) 10 If iShiftBits = 0 Then 11 LShift = lValue 12 Exit Func... 阅读全文
posted @ 2012-10-12 15:43 USID 阅读(1667) 评论(0) 推荐(0) 编辑