15 lines
395 B
C++
15 lines
395 B
C++
#ifndef _REMOTEPSAPP_ASMUTIL_HPP_
|
|
#define _REMOTEPSAPP_ASMUTIL_HPP_
|
|
|
|
class RGB888;
|
|
class ImageInfo;
|
|
|
|
extern "C"
|
|
{
|
|
resampleClipRow(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD outLen);
|
|
resampleClipCol(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD inWidth,DWORD outLen,DWORD outWidth);
|
|
setAt(ImageInfo *pImageInfo);
|
|
copyBGRRGB(void *pRGB,void *pBGR,int items,int output_components);
|
|
}
|
|
#endif
|