summaryrefslogtreecommitdiffstats
path: root/loader/wine/winestring.h
blob: e4d162d500e0ab65f7db0dbf28a1930a60c6c385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __WINE_WINESTRING_H
#define __WINE_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 /* __WINE_WINESTRING_H */