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