mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-21 14:58:29 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
13 lines
357 B
C
13 lines
357 B
C
#ifndef __WINE_WINE_WINESTRING_H
|
|
#define __WINE_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_WINE_WINESTRING_H */
|