1 | #ifndef ___cr_bmpscale_h__
|
---|
2 | #define ___cr_bmpscale_h__
|
---|
3 |
|
---|
4 | #include <iprt/types.h>
|
---|
5 | #include <iprt/cdefs.h>
|
---|
6 |
|
---|
7 |
|
---|
8 | RT_C_DECLS_BEGIN
|
---|
9 |
|
---|
10 | #ifndef IN_RING0
|
---|
11 | # define VBOXBMPSCALEDECL(_type) DECLEXPORT(_type)
|
---|
12 | #else
|
---|
13 | # define VBOXBLITTERDECL(_type) RTDECL(_type)
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | VBOXBMPSCALEDECL(void) CrBmpScale32 (uint8_t *dst,
|
---|
17 | int iDstDeltaLine,
|
---|
18 | int dstW, int dstH,
|
---|
19 | const uint8_t *src,
|
---|
20 | int iSrcDeltaLine,
|
---|
21 | int srcW, int srcH);
|
---|
22 |
|
---|
23 | RT_C_DECLS_END
|
---|
24 |
|
---|
25 | #endif /* #ifndef ___cr_bmpscale_h__ */
|
---|