forked from Hyeoun/team_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStructClass.cs
More file actions
28 lines (27 loc) · 717 Bytes
/
StructClass.cs
File metadata and controls
28 lines (27 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace team_Project {
struct BFHeader {
public short bfType;
public int bfSize;
public short bfReserved1;
public short bfReserved2;
public int bfOffBits;
} //14
struct BFinfo {
public int biSize;
public int biWidth;
public int biHeight;
public short biPlanes;
public short biBitCount;
public int biCompression;
public int biSizeImage;
public int biXPelsPerMeter;
public int biYPelsPerMeter;
public int biClrUsed;
public int biClrImportant;
} //40
}