view loader/wine/winestring.h @ 37086:f19959d0bbc9

Fix libmpcodecs inline asm on ICL. Author: Matt Oliver <protogonoi@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
author michael
date Fri, 02 May 2014 18:36:48 +0000
parents 494c251bd39e
children
line wrap: on
line source

#ifndef MPLAYER_WINESTRING_H
#define MPLAYER_WINESTRING_H

#include <strings.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 */