-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMVUtil.h
More file actions
31 lines (25 loc) · 785 Bytes
/
Copy pathMVUtil.h
File metadata and controls
31 lines (25 loc) · 785 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
/*
*-----------------------------------------------------------------------------
* Name MVUtil.h
* Purpose
* Development Kit Microsoft Win32 SDK, Visual C++ 6.00
*
*
* Description
*
*
*-----------------------------------------------------------------------------
*/
#if !defined(MV_MVUTIL) //
#define MV_MVUTIL
/* By C++ language compiler */
#ifdef __cplusplus
extern "C" {
#endif
HVSTATUS __stdcall HVSaveJPEG(char *lpFileName, BYTE *pBuffer, int nWidth, int nHeight, int nBitCount, BOOL bVerFlip, int nQuality);
HVSTATUS __stdcall HVLoadJPEG(char *lpFileName, BYTE *pBuffer, int *pWidth, int *pHeight, int *pBitCount, BOOL bVerFlip);
/* extren "C" { */
#ifdef __cplusplus
}
#endif
#endif