annotate loader/wine/winestring.h @ 37195:ac6c37d85d65 default tip

configure: Fix initialization of variable def_local_aligned_32 It contiained the #define of HAVE_LOCAL_ALIGNED_16 instead of HAVE_LOCAL_ALIGNED_32.
author al
date Sun, 28 Sep 2014 18:38:41 +0000
parents 494c251bd39e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26045
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 24422
diff changeset
1 #ifndef MPLAYER_WINESTRING_H
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 24422
diff changeset
2 #define MPLAYER_WINESTRING_H
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
35912
494c251bd39e Add strings.h #includes for strncasecmp().
diego
parents: 26045
diff changeset
4 #include <strings.h>
494c251bd39e Add strings.h #includes for strncasecmp().
diego
parents: 26045
diff changeset
5
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 #include "windef.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10 LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 #define lstrncmpiA strncasecmp
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14
26045
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 24422
diff changeset
15 #endif /* MPLAYER_WINESTRING_H */