Changeset bb29acd2f25176a70759862417b99b8cbd082e2d
- Timestamp:
- 05/24/08 10:33:03
(3 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1211617983 +0300
- git-parent:
[9194945adec1b6805e5a0cbef0966d5c15bd88d2]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1211617983 +0300
- Message:
vlc_wclosedir is still needed on Windows
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9194945 |
rbb29acd |
|
| 853 | 853 | #ifdef WIN32 |
|---|
| 854 | 854 | VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) ); |
|---|
| 855 | | #endif |
|---|
| | 855 | VLC_EXPORT( int, vlc_wclosedir, (void *) ); |
|---|
| | 856 | #endif |
|---|
| | 857 | |
|---|
| 856 | 858 | VLC_EXPORT( char *, vlc_gettext, ( const char *msgid ) ); |
|---|
| 857 | 859 | |
|---|
| re4c0e92 |
rbb29acd |
|
| 137 | 137 | #endif |
|---|
| 138 | 138 | |
|---|
| | 139 | #ifdef WIN32 |
|---|
| | 140 | # define opendir Use_utf8_opendir_or_vlc_wopendir_instead! |
|---|
| | 141 | # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead! |
|---|
| | 142 | # define closedir vlc_wclosedir |
|---|
| | 143 | #endif |
|---|
| | 144 | |
|---|
| 139 | 145 | /* libintl support */ |
|---|
| 140 | 146 | #define _(str) vlc_gettext (str) |
|---|
| r00e71fb |
rbb29acd |
|
| 282 | 282 | void *vlc_wopendir (const wchar_t *); |
|---|
| 283 | 283 | struct _wdirent *vlc_wreaddir (void *); |
|---|
| 284 | | int vlc_wclosedir (void *); |
|---|
| 285 | 284 | void vlc_rewinddir (void *); |
|---|
| 286 | | # define opendir Use_utf8_opendir_or_vlc_wopendir_instead! |
|---|
| 287 | | # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead! |
|---|
| 288 | | # define closedir vlc_wclosedir |
|---|
| 289 | 285 | # define _wopendir vlc_wopendir |
|---|
| 290 | 286 | # define _wreaddir vlc_wreaddir |
|---|