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