-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGetScreenToBitmap.h
More file actions
34 lines (27 loc) · 880 Bytes
/
GetScreenToBitmap.h
File metadata and controls
34 lines (27 loc) · 880 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
29
30
31
32
33
34
// GetScreenToBitmap.h: interface for the CGetScreenToBitmap class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GETSCREENTOBITMAP_H__576574FF_E7C0_4C9D_8258_90A53B957D89__INCLUDED_)
#define AFX_GETSCREENTOBITMAP_H__576574FF_E7C0_4C9D_8258_90A53B957D89__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Huffman.H"
class CGetScreenToBitmap
{
public:
// CHuffman m_Encode;
LPSTR FAR m_lpBmpData;
DWORD m_dwBmpSize;
DWORD m_dwBmpInfoSize;
CRect m_rcArea;
public:
void SetArea(CRect rcArea,int nArea);
DWORD GetImageSize(void);
LPSTR FAR GetImage(void);
void ResetVariable(void);
BOOL GetScreen(CRect rcArea, int nBits, int nArea);
CGetScreenToBitmap();
virtual ~CGetScreenToBitmap();
};
#endif // !defined(AFX_GETSCREENTOBITMAP_H__576574FF_E7C0_4C9D_8258_90A53B957D89__INCLUDED_)