12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct GRADIENT_TRIANGLE
- {
-
-
-
- uint Vertex1;
-
-
-
- uint Vertex2;
-
-
-
- uint Vertex3;
-
-
-
-
-
-
- public GRADIENT_TRIANGLE(uint vertex1, uint vertex2, uint vertex3)
- {
- this.Vertex1 = vertex1;
- this.Vertex2 = vertex2;
- this.Vertex3 = vertex3;
- }
- }
- }
- }
|