Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordi Mas i Hernandez <jordi@mono-cvs.ximian.com>2004-02-01 21:19:54 +0300
committerJordi Mas i Hernandez <jordi@mono-cvs.ximian.com>2004-02-01 21:19:54 +0300
commit923c104ea576cbd328889586f2a3cd293df4e4c0 (patch)
treea93dcbf43221ec282e632b864fd36ea93d75c3fc
parent3cbdfc89d55c34e3586df91f8afea461cbf31c00 (diff)
Syncs StructLayout with GdipBitmapData at bitmap.c. Bug fix
svn path=/trunk/mcs/; revision=22675
-rwxr-xr-xmcs/class/System.Drawing/System.Drawing.Imaging/BitmapData.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcs/class/System.Drawing/System.Drawing.Imaging/BitmapData.cs b/mcs/class/System.Drawing/System.Drawing.Imaging/BitmapData.cs
index 60b02717447..799c4afeadb 100755
--- a/mcs/class/System.Drawing/System.Drawing.Imaging/BitmapData.cs
+++ b/mcs/class/System.Drawing/System.Drawing.Imaging/BitmapData.cs
@@ -16,7 +16,8 @@ namespace System.Drawing.Imaging
[StructLayout(LayoutKind.Sequential)]
public sealed class BitmapData {
internal int width, height, stride;
- internal PixelFormat pixel_format;
+ internal PixelFormat pixel_format;
+ internal bool own_scan0;
internal IntPtr address;
internal int reserved;
private bool bAllocated = false;