cadencii.win32.MAKELONG C# (CSharp) Method

MAKELONG() public static method

public static MAKELONG ( int a, int b ) : int
a int
b int
return int
        public static int MAKELONG( int a, int b ) {
            return 0xffff & a | ((0xffff & b) << 16);
        }
    }
win32