Added comments to the interface, and qclib does it's own endian checking now. No more sharing with the engine.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1048 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-05-22 13:42:10 +00:00
parent 8c50deeb2c
commit 03dfb7f399
6 changed files with 225 additions and 269 deletions

View file

@ -101,12 +101,12 @@ void StripExtension (char *path);
extern short (*BigShort) (short l);
extern short (*LittleShort) (short l);
extern long (*BigLong) (long l);
extern long (*LittleLong) (long l);
extern float (*BigFloat) (float l);
extern float (*LittleFloat) (float l);
extern short (*PRBigShort) (short l);
extern short (*PRLittleShort) (short l);
extern long (*PRBigLong) (long l);
extern long (*PRLittleLong) (long l);
extern float (*PRBigFloat) (float l);
extern float (*PRLittleFloat) (float l);