]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - crc.h
renamed byte to qbyte throughout engine to eliminate a mingw conflict
[xonotic/darkplaces.git] / crc.h
diff --git a/crc.h b/crc.h
index c613ebc4f24304517b167bf3a5d7c4c40f90e0df..7bf4092ae37aa2a984e034534f9b59025bf38889 100644 (file)
--- a/crc.h
+++ b/crc.h
@@ -20,9 +20,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 /* crc.h */
 
 void CRC_Init(unsigned short *crcvalue);
-void CRC_ProcessByte(unsigned short *crcvalue, byte data);
+void CRC_ProcessByte(unsigned short *crcvalue, qbyte data);
 // LordHavoc: added this for speed reasons
-void CRC_ProcessBytes(unsigned short *crcvalue, byte *data, int size);
+void CRC_ProcessBytes(unsigned short *crcvalue, qbyte *data, int size);
 unsigned short CRC_Value(unsigned short crcvalue);
 // LordHavoc: further speed and usability improvement
-unsigned short CRC_Block(byte *data, int size);
+unsigned short CRC_Block(qbyte *data, int size);