view loader/wine/winestring.h @ 24419:53ca44efadce

cosmetics: Use uppercase for multiple inclusion guards and comment #endifs.
author diego
date Wed, 12 Sep 2007 23:16:39 +0000
parents 500e245c5425
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 */