12 lines
297 B
C++
12 lines
297 B
C++
#ifndef _PROTO_ASMUTIL_HPP_
|
|
#define _PROTO_ASMUTIL_HPP_
|
|
|
|
class RGB888;
|
|
|
|
extern "C"
|
|
{
|
|
resampleClipRow(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD outLen,DWORD outClamp);
|
|
resampleClipCol(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD inWidth,DWORD outLen,DWORD outWidth,DWORD outClamp);
|
|
}
|
|
#endif
|