view loader/wine/winestring.h @ 35585:7d8f561558fc

Reduce register usage in an asm block. Reduce to 4 registers in the asm block of render_frame_yuv422_sse4. After this modification, the function is only ~3.4x faster than render_frame_yuv422.
author upsuper
date Fri, 14 Dec 2012 02:16:36 +0000
parents a8ea87c71d18
children 494c251bd39e
line wrap: on
line source

#ifndef MPLAYER_WINESTRING_H
#define MPLAYER_WINESTRING_H

#include "windef.h"

LPWSTR      WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
LPSTR       WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
LPWSTR      WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
LPSTR       WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);

#define lstrncmpiA strncasecmp

#endif /* MPLAYER_WINESTRING_H */