annotate loader/wine/winestring.h @ 4816:f1dea39a50bb

Fixed the http response parser when the http header only has the HTTP answer and no field. Fixed some compiler warnings.
author bertrand
date Sat, 23 Feb 2002 07:31:45 +0000
parents 3b5f5d1c5041
children 500e245c5425
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 #ifndef __WINE_WINE_WINESTRING_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2 #define __WINE_WINE_WINESTRING_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 #include "windef.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 #define lstrncmpiA strncasecmp
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 #endif /* __WINE_WINE_WINESTRING_H */