summaryrefslogtreecommitdiff
path: root/lib/os_internal.h
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-11-14 12:34:45 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-11-14 12:34:45 +0000
commit678b4e9cad47a6c176bb05de32aa0dd56742f15a (patch)
treebbf9721ae6fb2fde3326bfece1af08ba34d3a164 /lib/os_internal.h
parentdd90d5f61610a7bd59fe3f778d07000cc9746516 (diff)
downloadxine-lib-678b4e9cad47a6c176bb05de32aa0dd56742f15a.tar.gz
xine-lib-678b4e9cad47a6c176bb05de32aa0dd56742f15a.tar.bz2
*BUGFIX*
Testsuite for M$ Windows: - init mutex in all video drivers ('none' for testsuite, fixes crashes), was OK for linux pthreads - use WaitForSingleObject for console file descriptirs in _x_io_select (fixes stdin:/) - workaround heavy debug messages in asf demuxer for some samples (fixes full disk :->) Fixed previous fix, s/gmtime/timgm/ :-) Aalib cross detection + udate docs CVS patchset: 7799 CVS date: 2005/11/14 12:34:45
Diffstat (limited to 'lib/os_internal.h')
-rw-r--r--lib/os_internal.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/os_internal.h b/lib/os_internal.h
index 6d5d33ae4..f7365381f 100644
--- a/lib/os_internal.h
+++ b/lib/os_internal.h
@@ -84,11 +84,17 @@ char *_xine_private_strpbrk(const char *s, const char *accept);
char *_xine_private_strsep(char **stringp, const char *delim);
#endif
-/* replacement of gmtime */
-#ifndef HAVE_GMTIME
+/* replacement of timegm */
+#ifndef HAVE_TIMEGM
#include <time.h>
-#define gmtime(TM) _xine_private_gmtime((TM))
-time_t _xine_private_gmtime(struct tm *tm);
+#define timegm(TM) _xine_private_timegm((TM))
+time_t _xine_private_timegm(struct tm *tm);
+#endif
+
+/* replacement of unsetenv */
+#ifndef HAVE_UNSETENV
+#define unsetenv(NAME) _xine_private_unsetenv((NAME))
+void _xine_private_unsetenv(const char *name);
#endif
/* macross needed for MSVC */