Changeset 5fd756e4ef899aad45adcbb91fcafad079d007d1
- Timestamp:
- 02/20/05 21:47:04
(4 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1108932424 +0000
- git-parent:
[223ebac60de34e1d82cee9a08e9aa041bf3e694c]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1108932424 +0000
- Message:
* src/misc/httpd.c, modules/demux/subtitle.c, modules/gui/wince/wince_rc.rc: more WinCE build fixes.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r534a812 |
r5fd756e |
|
| 37 | 37 | #include <vlc/input.h> |
|---|
| 38 | 38 | #include "vlc_video.h" |
|---|
| 39 | | |
|---|
| 40 | | |
|---|
| 41 | | #if (!defined( WIN32 ) || defined(__MINGW32__)) |
|---|
| 42 | | # include <dirent.h> |
|---|
| 43 | | #endif |
|---|
| 44 | 39 | |
|---|
| 45 | 40 | /***************************************************************************** |
|---|
| r2774b1f |
r5fd756e |
|
| 28 | 28 | |
|---|
| 29 | 29 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) |
|---|
| 30 | | #ifdef _WIN32 |
|---|
| | 30 | #if defined(_WIN32) && !defined(_WIN32_WCE) |
|---|
| 31 | 31 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US |
|---|
| 32 | 32 | #pragma code_page(1252) |
|---|
| … | … | |
| 192 | 192 | |
|---|
| 193 | 193 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA) |
|---|
| 194 | | #ifdef _WIN32 |
|---|
| | 194 | #if defined(_WIN32) && !defined(_WIN32_WCE) |
|---|
| 195 | 195 | LANGUAGE LANG_FRENCH, SUBLANG_FRENCH |
|---|
| 196 | 196 | #pragma code_page(1252) |
|---|
| rce5c749 |
r5fd756e |
|
| 57 | 57 | #endif |
|---|
| 58 | 58 | |
|---|
| 59 | | #if defined(WIN32) |
|---|
| | 59 | #if defined(WIN32) && !defined(UNDER_CE) |
|---|
| 60 | 60 | static const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}}; |
|---|
| | 61 | #elif defined(UNDER_CE) && defined(AF_INET6) |
|---|
| | 62 | # undef AF_INET6 |
|---|
| 61 | 63 | #endif |
|---|
| 62 | 64 | |
|---|