[StructLayout(LayoutKind.Sequential)]
public struct GRADIENT_RECT
{
public uint UpperLeft;
public uint LowerRight;
public GRADIENT_RECT(uint upLeft, uint lowRight)
{
UpperLeft = upLeft;
LowerRight = lowRight;
}
}
Structure GRADIENT_RECT
Public TODO
End Structure
None.
None.