- changed MIDI sources so that they do not have to include i_musicinterns.h anymore.

They were already clean of unwanted external references, but including this file made it hard to keep it that way.
This also moves a few useful definitions around to less 'dirty' headers.
This commit is contained in:
Christoph Oelckers 2019-09-25 21:47:33 +02:00
commit c3f26422df
13 changed files with 60 additions and 57 deletions

View file

@ -68,12 +68,6 @@
// Maximum number of files that might appear in a crash report.
#define MAX_FILES 5
#ifndef __BIG_ENDIAN__
#define MAKE_ID(a,b,c,d) ((a)|((b)<<8)|((c)<<16)|((d)<<24))
#else
#define MAKE_ID(a,b,c,d) ((d)|((c)<<8)|((b)<<16)|((a)<<24))
#endif
#define ZIP_LOCALFILE MAKE_ID('P','K',3,4)
#define ZIP_CENTRALFILE MAKE_ID('P','K',1,2)
#define ZIP_ENDOFDIR MAKE_ID('P','K',5,6)