Esempio n. 1
0
        public DIBSection(IntPtr hwnd, int width, int height)
        {
            dibInfo        = default(DIBInfo);
            dibInfo.Hwnd   = hwnd;
            dibInfo.Width  = width;
            dibInfo.Height = height;

            CreateDIB(ref dibInfo);
        }
Esempio n. 2
0
 private static extern void CreateDIB(ref DIBInfo dibInfo);
Esempio n. 3
0
 private static extern void DrawDIB(ref DIBInfo dibInfo);
Esempio n. 4
0
 private static extern void DestroyDIB(ref DIBInfo dibInfo);