5 references to FromLowHighUnsigned
System.Windows.Forms.Primitives.Tests (4)
Interop\PARAMTests.cs (4)
25Assert.Equal(0x03040102, (int)PARAM.FromLowHighUnsigned(0x0102, 0x0304)); 26Assert.Equal(unchecked((int)0xF3F4F1F2), (int)PARAM.FromLowHighUnsigned(0xF1F2, 0xF3F4)); 34Assert.Equal(0x0000000003040102, (long)PARAM.FromLowHighUnsigned(0x0102, 0x0304)); 35Assert.Equal(0x00000000F3F4F1F2, (long)PARAM.FromLowHighUnsigned(0xF1F2, 0xF3F4));
System.Windows.Forms.TestUtilities (1)
KeyboardSimulator.cs (1)
30nint lParam = PARAM.FromLowHighUnsigned(repeatCount, scanCode);