12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct SCROLLINFO
- {
-
-
-
- public int cbSize;
-
-
-
- public uint fMask;
-
-
-
- public int nMin;
-
-
-
- public int nMax;
-
-
-
- public int nPage;
-
-
-
- public int nPos;
-
-
-
- public int nTrackPos;
- }
- }
- }
|