AdvancedLauncher.Tools.NativeMacros.GET_Y_LPARAM C# (CSharp) Method

GET_Y_LPARAM() public static method

public static GET_Y_LPARAM ( uint dword ) : int
dword uint
return int
        public static int GET_Y_LPARAM(uint dword)
        {
            return unchecked((int)(short)HIWORD(dword));
        }