You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//HEADER_GOES_HERE
|
|
|
|
|
#ifndef __CAPTURE_H__
|
|
|
|
|
#define __CAPTURE_H__
|
|
|
|
|
|
|
|
|
|
void CaptureScreen();
|
|
|
|
|
BOOL CaptureHdr(HANDLE hFile, short width, short height);
|
|
|
|
|
BOOL CapturePal(HANDLE hFile, PALETTEENTRY *palette);
|
|
|
|
|
BOOL CapturePix(HANDLE hFile, WORD width, WORD height, WORD stride, BYTE *pixels);
|
|
|
|
|
BYTE *CaptureEnc(BYTE *src, BYTE *dst, int width);
|
|
|
|
|
HANDLE CaptureFile(char *dst_path);
|
|
|
|
|
void RedPalette(PALETTEENTRY *pal);
|
|
|
|
|
|
|
|
|
|
#endif /* __CAPTURE_H__ */
|