2012年5月14日

C#高低位

摘要: 在c的写法是这样 xPos = LOWORD(lParam); // horizontal position of cursor yPos = HIWORD(lParam); // vertical position of cursor c#中是这样 int xPos = lParam.ToInt32() & 0x00001111; int yPos = (lParam.ToInt32() & 0x11110000) >> 16; 阅读全文

posted @ 2012-05-14 17:02 刺客mrchenzh 阅读(400) 评论(0) 推荐(0) 编辑

导航