1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct PAINTSTRUCT
- {
-
-
-
- public IntPtr hdc;
-
-
-
- public bool fErase;
-
-
-
- public RECT rcPaint;
-
-
-
- public bool fRestore;
-
-
-
- public bool fIncUpdate;
-
-
-
- [MarshalAs(UnmanagedType.ByValArray, SizeConst = 32)]
- public byte[] rgbReserved;
- }
- }
- }
|