Ypsilon.Core.Windows.Message.MakeLParam C# (CSharp) 메소드

MakeLParam() 공개 정적인 메소드

public static MakeLParam ( int low, int high ) : IntPtr
low int
high int
리턴 System.IntPtr
        public static IntPtr MakeLParam(int low, int high)
        {
            return (IntPtr)((high << 0x10) | (low & 0xffff));
        }