Added few more stubs so that control reaches to DestroyDevice().
[mesa.git] / src / util / mesa-sha1.h
index ecbc708b5ea5c81266eb4e9ae2e266f334b988da..bde50ba1eb4f5c97528d13314318178a5282d620 100644 (file)
  * DEALINGS IN THE SOFTWARE.
  */
 
-#ifndef SHA1_H
-#define SHA1_H
+#ifndef MESA_SHA1_H
+#define MESA_SHA1_H
 
 #include <stdlib.h>
+#include "c99_compat.h"
 #include "sha1/sha1.h"
 
 #ifdef __cplusplus
@@ -32,10 +33,17 @@ extern "C" {
 
 #define mesa_sha1 _SHA1_CTX
 
-#define _mesa_sha1_init SHA1Init
+static inline void
+_mesa_sha1_init(struct mesa_sha1 *ctx)
+{
+   SHA1Init(ctx);
+}
 
-void
-_mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, int size);
+static inline void
+_mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, size_t size)
+{
+   SHA1Update(ctx, (const unsigned char *)data, size);
+}
 
 static inline void
 _mesa_sha1_final(struct mesa_sha1 *ctx, unsigned char result[20])