diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-08-29 15:28:16 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-08-29 15:28:16 +0000 |
commit | 0f8fd3b22893dd07db6506a1ba4d298e51a1c985 (patch) | |
tree | 291cf3594687cdaaa23f9527ba6d9f20f1a6283d /src/xine-utils/xineutils.h | |
parent | 7cb89d83b0d845270e583c2848b0eaaa5e053217 (diff) | |
download | xine-lib-0f8fd3b22893dd07db6506a1ba4d298e51a1c985.tar.gz xine-lib-0f8fd3b22893dd07db6506a1ba4d298e51a1c985.tar.bz2 |
*BUGFIX*
Windows ports updates:
- finished M$VC port update
- moved xine plugins back to normal location for Windows ports,
added relative directories (used relative to ${prefix}),
make sure it's thread-safe (but it's still hacky)
- fixed ugly bug with loading plugins, when working drive was differrent from
plugins directory
directory
- directory and subdirectory separator called as platform specific
- fix crash with newer win32 pthread (missing mutex_init in vo plugin), yes!
- small doc update
CVS patchset: 7712
CVS date: 2005/08/29 15:28:16
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r-- | src/xine-utils/xineutils.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index 017273dd9..725c3e9e6 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineutils.h,v 1.97 2005/08/25 15:37:02 valtri Exp $ + * $Id: xineutils.h,v 1.98 2005/08/29 15:28:17 valtri Exp $ * */ #ifndef XINEUTILS_H @@ -642,6 +642,15 @@ void *xine_xmalloc_aligned(size_t alignment, size_t size, void **base); */ const char *xine_get_homedir(void); +#if defined(WIN32) || defined(__CYGWIN__) +/* + * Get other xine directories. + */ +const char *xine_get_plugindir(void); +const char *xine_get_fontdir(void); +const char *xine_get_localedir(void); +#endif + /* * Clean a string (remove spaces and '=' at the begin, * and '\n', '\r' and spaces at the end. @@ -1035,10 +1044,6 @@ char *xine_get_system_encoding(void); */ const char *xine_guess_spu_encoding(void); -#if defined(__CYGWIN__) || defined(WIN32) -char *exec_path_append_subdir(char * string); -#endif - /* * use the best clock reference (API compatible with gettimeofday) * note: it will be a monotonic clock, if available. |