mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
upgrade libmikmod-3.3.3
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@875 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
729cc937bf
commit
468f84007a
11 changed files with 12 additions and 10 deletions
|
@ -68,7 +68,7 @@ extern "C" {
|
|||
|
||||
#define LIBMIKMOD_VERSION_MAJOR 3L
|
||||
#define LIBMIKMOD_VERSION_MINOR 3L
|
||||
#define LIBMIKMOD_REVISION 2L
|
||||
#define LIBMIKMOD_REVISION 3L
|
||||
|
||||
#define LIBMIKMOD_VERSION \
|
||||
((LIBMIKMOD_VERSION_MAJOR<<16)| \
|
||||
|
@ -296,7 +296,7 @@ MIKMODAPI extern void MikMod_free(void*);
|
|||
*/
|
||||
|
||||
typedef struct MREADER {
|
||||
BOOL (*Seek)(struct MREADER*,long,int);
|
||||
int (*Seek)(struct MREADER*,long,int);
|
||||
long (*Tell)(struct MREADER*);
|
||||
BOOL (*Read)(struct MREADER*,void*,size_t);
|
||||
int (*Get)(struct MREADER*);
|
||||
|
@ -306,10 +306,10 @@ typedef struct MREADER {
|
|||
} MREADER;
|
||||
|
||||
typedef struct MWRITER {
|
||||
BOOL (*Seek)(struct MWRITER*, long, int);
|
||||
int (*Seek)(struct MWRITER*, long, int);
|
||||
long (*Tell)(struct MWRITER*);
|
||||
BOOL (*Write)(struct MWRITER*, const void*, size_t);
|
||||
BOOL (*Put)(struct MWRITER*, int);
|
||||
int (*Put)(struct MWRITER*, int);
|
||||
} MWRITER;
|
||||
|
||||
/*
|
||||
|
@ -608,6 +608,7 @@ MIKMODAPI extern struct MLOADER load_stm; /* ScreamTracker 2 (by Future Crew) */
|
|||
MIKMODAPI extern struct MLOADER load_stx; /* STMIK 0.2 (by Future Crew) */
|
||||
MIKMODAPI extern struct MLOADER load_s3m; /* ScreamTracker 3 (by Future Crew) */
|
||||
MIKMODAPI extern struct MLOADER load_ult; /* UltraTracker (by MAS) */
|
||||
MIKMODAPI extern struct MLOADER load_umx; /* Unreal UMX container of Epic Games */
|
||||
MIKMODAPI extern struct MLOADER load_uni; /* MikMod and APlayer internal module format */
|
||||
MIKMODAPI extern struct MLOADER load_xm; /* FastTracker 2 (by Triton) */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
libmikmod-3.3.2
|
||||
libmikmod-3.3.3
|
||||
only the "nosound" driver (drv_nos) is included, all of
|
||||
the other libmikmod drivers were made "MISSING" drivers.
|
||||
we only need/register/use drv_nos here and nothing else.
|
||||
|
|
Binary file not shown.
|
@ -68,7 +68,7 @@ extern "C" {
|
|||
|
||||
#define LIBMIKMOD_VERSION_MAJOR 3L
|
||||
#define LIBMIKMOD_VERSION_MINOR 3L
|
||||
#define LIBMIKMOD_REVISION 2L
|
||||
#define LIBMIKMOD_REVISION 3L
|
||||
|
||||
#define LIBMIKMOD_VERSION \
|
||||
((LIBMIKMOD_VERSION_MAJOR<<16)| \
|
||||
|
@ -296,7 +296,7 @@ MIKMODAPI extern void MikMod_free(void*);
|
|||
*/
|
||||
|
||||
typedef struct MREADER {
|
||||
BOOL (*Seek)(struct MREADER*,long,int);
|
||||
int (*Seek)(struct MREADER*,long,int);
|
||||
long (*Tell)(struct MREADER*);
|
||||
BOOL (*Read)(struct MREADER*,void*,size_t);
|
||||
int (*Get)(struct MREADER*);
|
||||
|
@ -306,10 +306,10 @@ typedef struct MREADER {
|
|||
} MREADER;
|
||||
|
||||
typedef struct MWRITER {
|
||||
BOOL (*Seek)(struct MWRITER*, long, int);
|
||||
int (*Seek)(struct MWRITER*, long, int);
|
||||
long (*Tell)(struct MWRITER*);
|
||||
BOOL (*Write)(struct MWRITER*, const void*, size_t);
|
||||
BOOL (*Put)(struct MWRITER*, int);
|
||||
int (*Put)(struct MWRITER*, int);
|
||||
} MWRITER;
|
||||
|
||||
/*
|
||||
|
@ -608,6 +608,7 @@ MIKMODAPI extern struct MLOADER load_stm; /* ScreamTracker 2 (by Future Crew) */
|
|||
MIKMODAPI extern struct MLOADER load_stx; /* STMIK 0.2 (by Future Crew) */
|
||||
MIKMODAPI extern struct MLOADER load_s3m; /* ScreamTracker 3 (by Future Crew) */
|
||||
MIKMODAPI extern struct MLOADER load_ult; /* UltraTracker (by MAS) */
|
||||
MIKMODAPI extern struct MLOADER load_umx; /* Unreal UMX container of Epic Games */
|
||||
MIKMODAPI extern struct MLOADER load_uni; /* MikMod and APlayer internal module format */
|
||||
MIKMODAPI extern struct MLOADER load_xm; /* FastTracker 2 (by Triton) */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
libmikmod-3.3.2
|
||||
libmikmod-3.3.3
|
||||
only the "nosound" driver (drv_nos) is included, all of
|
||||
the other libmikmod drivers were made "MISSING" drivers.
|
||||
we only need/register/use drv_nos here and nothing else.
|
||||
|
|
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