mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-10 03:51:41 +00:00
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:
parent
43ba38a7bb
commit
4a8b58b300
18 changed files with 16 additions and 12 deletions
|
@ -134,10 +134,10 @@ typedef unsigned char UBYTE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* 2 bytes, signed and unsigned: */
|
/* 2 bytes, signed and unsigned: */
|
||||||
#ifndef __LCC__
|
#if !(defined __LCC__ && defined _WIN32)
|
||||||
typedef signed short int SWORD;
|
typedef signed short int SWORD;
|
||||||
#endif
|
#endif
|
||||||
#if !(defined(__LCC__) || defined(_MIKMOD_AMIGA))
|
#if !((defined __LCC__ && defined _WIN32) || defined(_MIKMOD_AMIGA))
|
||||||
typedef unsigned short int UWORD;
|
typedef unsigned short int UWORD;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define XMP_VERSION "4.4.2"
|
#define XMP_VERSION "4.5.0"
|
||||||
#define XMP_VERCODE 0x040402
|
#define XMP_VERCODE 0x040500
|
||||||
#define XMP_VER_MAJOR 4
|
#define XMP_VER_MAJOR 4
|
||||||
#define XMP_VER_MINOR 4
|
#define XMP_VER_MINOR 5
|
||||||
#define XMP_VER_RELEASE 2
|
#define XMP_VER_RELEASE 0
|
||||||
|
|
||||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
# if defined(BUILDING_STATIC)
|
# 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_next_position (xmp_context);
|
||||||
LIBXMP_EXPORT int xmp_prev_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_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_stop_module (xmp_context);
|
||||||
LIBXMP_EXPORT void xmp_restart_module (xmp_context);
|
LIBXMP_EXPORT void xmp_restart_module (xmp_context);
|
||||||
LIBXMP_EXPORT int xmp_seek_time (xmp_context, int);
|
LIBXMP_EXPORT int xmp_seek_time (xmp_context, int);
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -134,10 +134,10 @@ typedef unsigned char UBYTE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* 2 bytes, signed and unsigned: */
|
/* 2 bytes, signed and unsigned: */
|
||||||
#ifndef __LCC__
|
#if !(defined __LCC__ && defined _WIN32)
|
||||||
typedef signed short int SWORD;
|
typedef signed short int SWORD;
|
||||||
#endif
|
#endif
|
||||||
#if !(defined(__LCC__) || defined(_MIKMOD_AMIGA))
|
#if !((defined __LCC__ && defined _WIN32) || defined(_MIKMOD_AMIGA))
|
||||||
typedef unsigned short int UWORD;
|
typedef unsigned short int UWORD;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define XMP_VERSION "4.4.2"
|
#define XMP_VERSION "4.5.0"
|
||||||
#define XMP_VERCODE 0x040402
|
#define XMP_VERCODE 0x040500
|
||||||
#define XMP_VER_MAJOR 4
|
#define XMP_VER_MAJOR 4
|
||||||
#define XMP_VER_MINOR 4
|
#define XMP_VER_MINOR 5
|
||||||
#define XMP_VER_RELEASE 2
|
#define XMP_VER_RELEASE 0
|
||||||
|
|
||||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||||
# if defined(BUILDING_STATIC)
|
# 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_next_position (xmp_context);
|
||||||
LIBXMP_EXPORT int xmp_prev_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_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_stop_module (xmp_context);
|
||||||
LIBXMP_EXPORT void xmp_restart_module (xmp_context);
|
LIBXMP_EXPORT void xmp_restart_module (xmp_context);
|
||||||
LIBXMP_EXPORT int xmp_seek_time (xmp_context, int);
|
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue