示例#1
0
 public static long SetLowWord(this long n, int lw)
 {
     return(Windef.MAKELONG(0, (uint)lw));
 }
示例#2
0
 public static long SetHightWord(this long n, int hw)
 {
     return(Windef.MAKELONG((uint)hw, 0));
 }