summaryrefslogtreecommitdiffstats
path: root/kuser/sha1.h
diff options
context:
space:
mode:
Diffstat (limited to 'kuser/sha1.h')
-rw-r--r--kuser/sha1.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kuser/sha1.h b/kuser/sha1.h
index 8fa2d66..a853db4 100644
--- a/kuser/sha1.h
+++ b/kuser/sha1.h
@@ -24,13 +24,13 @@
#include <tqglobal.h>
struct sha1_ctx {
- Q_UINT64 count;
- Q_UINT32 state[5];
- Q_UINT8 buffer[64];
+ TQ_UINT64 count;
+ TQ_UINT32 state[5];
+ TQ_UINT8 buffer[64];
};
void sha1_init(void *ctx);
-void sha1_update(void *ctx, const Q_UINT8 *data, unsigned int len);
-void sha1_final(void* ctx, Q_UINT8 *out);
+void sha1_update(void *ctx, const TQ_UINT8 *data, unsigned int len);
+void sha1_final(void* ctx, TQ_UINT8 *out);
#endif