oslibs, codecs: updated vorbis, xmp, and mikmod builds.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1614 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2019-07-29 08:42:03 +00:00
parent 43ba38a7bb
commit 4a8b58b300
18 changed files with 16 additions and 12 deletions

View file

@ -134,10 +134,10 @@ typedef unsigned char UBYTE;
#endif
/* 2 bytes, signed and unsigned: */
#ifndef __LCC__
#if !(defined __LCC__ && defined _WIN32)
typedef signed short int SWORD;
#endif
#if !(defined(__LCC__) || defined(_MIKMOD_AMIGA))
#if !((defined __LCC__ && defined _WIN32) || defined(_MIKMOD_AMIGA))
typedef unsigned short int UWORD;
#endif

View file

@ -5,11 +5,11 @@
extern "C" {
#endif
#define XMP_VERSION "4.4.2"
#define XMP_VERCODE 0x040402
#define XMP_VERSION "4.5.0"
#define XMP_VERCODE 0x040500
#define XMP_VER_MAJOR 4
#define XMP_VER_MINOR 4
#define XMP_VER_RELEASE 2
#define XMP_VER_MINOR 5
#define XMP_VER_RELEASE 0
#if defined(_WIN32) && !defined(__CYGWIN__)
# if defined(BUILDING_STATIC)
@ -333,6 +333,8 @@ LIBXMP_EXPORT char **xmp_get_format_list (void);
LIBXMP_EXPORT int xmp_next_position (xmp_context);
LIBXMP_EXPORT int xmp_prev_position (xmp_context);
LIBXMP_EXPORT int xmp_set_position (xmp_context, int);
LIBXMP_EXPORT int xmp_set_row (xmp_context, int);
LIBXMP_EXPORT int xmp_set_tempo_factor(xmp_context, double);
LIBXMP_EXPORT void xmp_stop_module (xmp_context);
LIBXMP_EXPORT void xmp_restart_module (xmp_context);
LIBXMP_EXPORT int xmp_seek_time (xmp_context, int);

Binary file not shown.

Binary file not shown.

View file

@ -134,10 +134,10 @@ typedef unsigned char UBYTE;
#endif
/* 2 bytes, signed and unsigned: */
#ifndef __LCC__
#if !(defined __LCC__ && defined _WIN32)
typedef signed short int SWORD;
#endif
#if !(defined(__LCC__) || defined(_MIKMOD_AMIGA))
#if !((defined __LCC__ && defined _WIN32) || defined(_MIKMOD_AMIGA))
typedef unsigned short int UWORD;
#endif

View file

@ -5,11 +5,11 @@
extern "C" {
#endif
#define XMP_VERSION "4.4.2"
#define XMP_VERCODE 0x040402
#define XMP_VERSION "4.5.0"
#define XMP_VERCODE 0x040500
#define XMP_VER_MAJOR 4
#define XMP_VER_MINOR 4
#define XMP_VER_RELEASE 2
#define XMP_VER_MINOR 5
#define XMP_VER_RELEASE 0
#if defined(_WIN32) && !defined(__CYGWIN__)
# if defined(BUILDING_STATIC)
@ -333,6 +333,8 @@ LIBXMP_EXPORT char **xmp_get_format_list (void);
LIBXMP_EXPORT int xmp_next_position (xmp_context);
LIBXMP_EXPORT int xmp_prev_position (xmp_context);
LIBXMP_EXPORT int xmp_set_position (xmp_context, int);
LIBXMP_EXPORT int xmp_set_row (xmp_context, int);
LIBXMP_EXPORT int xmp_set_tempo_factor(xmp_context, double);
LIBXMP_EXPORT void xmp_stop_module (xmp_context);
LIBXMP_EXPORT void xmp_restart_module (xmp_context);
LIBXMP_EXPORT int xmp_seek_time (xmp_context, int);

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.