md5_hash.h: Replace outdated use of c_types.h with stdint
This commit is contained in:
parent
8c7afb4b46
commit
a825fe8703
1 changed files with 5 additions and 3 deletions
|
@ -15,14 +15,16 @@
|
||||||
#ifndef _ROM_MD5_HASH_H_
|
#ifndef _ROM_MD5_HASH_H_
|
||||||
#define _ROM_MD5_HASH_H_
|
#define _ROM_MD5_HASH_H_
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct MD5Context {
|
struct MD5Context {
|
||||||
uint32 buf[4];
|
uint32_t buf[4];
|
||||||
uint32 bits[2];
|
uint32_t bits[2];
|
||||||
uint8 in[64];
|
uint8_t in[64];
|
||||||
};
|
};
|
||||||
|
|
||||||
void MD5Init(struct MD5Context *context);
|
void MD5Init(struct MD5Context *context);
|
||||||
|
|
Loading…
Reference in a new issue