Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
BITMAPFILEHEADER fh;
BITMAPINFOHEADER ih;
CFile f;
f.Open("mybitmap.bmp",CFile::modeRead);
f.Read(&fh,sizeof(fh));
f.Read(&ih,sizeof(ih));
int spp = ih.biBitCount/8;
int size = ih.biHeight * ih.biWidth*spp;
BYTE* buffer = new BYTE[size];
f.Read(buffer,size);