plug-ins: in file-dds, rename endian.h to endian_rw.h ...

... to avoid clashing with the system <endian.h>

Thanks Andrea!
This commit is contained in:
Ell
2019-02-17 13:33:10 -05:00
parent 6fe57a946b
commit b5a34c3190
5 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@ file_dds_SOURCES = \
dxt.c \
dxt.h \
dxt_tables.h \
endian.h \
endian_rw.h \
imath.h \
mipmap.c \
mipmap.h \

View File

@ -45,7 +45,7 @@
#include "ddsplugin.h"
#include "dds.h"
#include "dxt.h"
#include "endian.h"
#include "endian_rw.h"
#include "misc.h"
#include "imath.h"

View File

@ -39,7 +39,7 @@
#include "dds.h"
#include "dxt.h"
#include "mipmap.h"
#include "endian.h"
#include "endian_rw.h"
#include "imath.h"
#include "color.h"

View File

@ -36,7 +36,7 @@
#include "dds.h"
#include "dxt.h"
#include "endian.h"
#include "endian_rw.h"
#include "mipmap.h"
#include "imath.h"
#include "vec.h"

View File

@ -20,8 +20,8 @@
Boston, MA 02110-1301, USA.
*/
#ifndef ENDIAN_H
#define ENDIAN_H
#ifndef ENDIAN_RW_H
#define ENDIAN_RW_H
#define GETL64(buf) \
(((unsigned long long)(buf)[0] ) | \