blob: fda56baca5fae2cda42592652c16f0d951c21fd8 (
plain)
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
|
#ifndef ___cr_bmpscale_h__
#define ___cr_bmpscale_h__
#include <iprt/types.h>
#include <iprt/cdefs.h>
RT_C_DECLS_BEGIN
#ifndef IN_RING0
# define VBOXBMPSCALEDECL(_type) DECLEXPORT(_type)
#else
# define VBOXBLITTERDECL(_type) RTDECL(_type)
#endif
VBOXBMPSCALEDECL(void) CrBmpScale32 (uint8_t *dst,
int iDstDeltaLine,
int dstW, int dstH,
const uint8_t *src,
int iSrcDeltaLine,
int srcW, int srcH);
RT_C_DECLS_END
#endif /* #ifndef ___cr_bmpscale_h__ */
|