annotate loader/wine/winestring.h @ 9468:356963ad4784
filter for applying 3:2 telecine to 23.976 fps progressive material.
use with mencder -ofps 29.97 -fps 29.97 for proper results!
author |
rfelker |
date |
Thu, 20 Feb 2003 04:57:37 +0000 |
parents |
3b5f5d1c5041 |
children |
500e245c5425 |
rev |
line source |
1
|
1 #ifndef __WINE_WINE_WINESTRING_H
|
|
2 #define __WINE_WINE_WINESTRING_H
|
|
3
|
|
4 #include "windef.h"
|
|
5
|
|
6 LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
|
|
7 LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
|
|
8 LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
|
|
9 LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
|
|
10
|
|
11 #define lstrncmpiA strncasecmp
|
|
12
|
|
13 #endif /* __WINE_WINE_WINESTRING_H */
|