view loader/wine/winestring.h @ 24413:500e245c5425

Consistently use path as multiple inclusion guard.
author diego
date Wed, 12 Sep 2007 15:30:22 +0000
parents 3b5f5d1c5041
children c98c9e7f3bd0
line wrap: on
line source

#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 */