diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-05-07 08:35:34 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-05-07 08:35:34 +0200 |
commit | 35da74e0b474398f1e3be7f4f61df642f5f4d2a0 (patch) | |
tree | 538dbebba8507c4983a8afdfad69f7b5ec13fb45 /mpg123/include | |
parent | oal wav/mp3 stream update (diff) | |
download | re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.tar re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.tar.gz re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.tar.bz2 re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.tar.lz re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.tar.xz re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.tar.zst re3-35da74e0b474398f1e3be7f4f61df642f5f4d2a0.zip |
Diffstat (limited to 'mpg123/include')
-rw-r--r-- | mpg123/include/mpg123_pre.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/mpg123/include/mpg123_pre.h b/mpg123/include/mpg123_pre.h deleted file mode 100644 index 9c668075..00000000 --- a/mpg123/include/mpg123_pre.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - mpg123_msvc: MPEG Audio Decoder library wrapper header for MS VC++ 2005 - - copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1 - initially written by Patrick Dehne and Thomas Orgis. -*/ -#ifndef MPG123_MSVC_H -#define MPG123_MSVC_H - -#include <tchar.h> -#include <stdlib.h> -#include <sys/types.h> - -typedef long ssize_t; -typedef __int32 int32_t; -typedef unsigned __int32 uint32_t; - -#define PRIiMAX "I64i" -typedef __int64 intmax_t; -// ftell returns long, _ftelli64 returns __int64 -// off_t is long, not __int64, use ftell -#define ftello ftell - -#define MPG123_NO_CONFIGURE -#include "mpg123.h" /* Yes, .h.in; we include the configure template! */ - -#ifdef __cplusplus -extern "C" { -#endif - - // Wrapper around mpg123_open that supports path names with unicode - // characters - EXPORT int mpg123_topen(mpg123_handle *fr, const _TCHAR *path); - EXPORT int mpg123_tclose(mpg123_handle *fr); - -#ifdef __cplusplus -} -#endif - -#endif |