]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - hmac.h
qdefs: Check _MSC_VER instead of incorrect MSVC
[xonotic/darkplaces.git] / hmac.h
diff --git a/hmac.h b/hmac.h
index 44939002f66561a67b04bb30325030dd66291bdb..71108ab65d9a1679d55801cbe7276d851484fe35 100644 (file)
--- a/hmac.h
+++ b/hmac.h
@@ -1,8 +1,10 @@
 #ifndef HMAC_H
 #define HMAC_H
 
+#include "qtypes.h"
+
 typedef void (*hashfunc_t) (unsigned char *out, const unsigned char *in, int n);
-qboolean hmac(
+qbool hmac(
        hashfunc_t hfunc, int hlen, int hblock,
        unsigned char *out,
        const unsigned char *in, int n,