diff options
author | theuni <theuni-nospam-@xbmc.org> | 2012-05-09 22:03:41 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-08 18:53:39 -0400 |
commit | d317ddaa3fa7eefd54631b5881239bb5542667b6 (patch) | |
tree | d5bed35e77e1dab8659b8ba9c5660b71bbfa74cf /lib/libRTV/md5.h | |
parent | 59c56949e5c23b4ad33b9165e6c02ae070fd791d (diff) |
[droid] fix symbol collision with python
Diffstat (limited to 'lib/libRTV/md5.h')
-rw-r--r-- | lib/libRTV/md5.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libRTV/md5.h b/lib/libRTV/md5.h index e382062528..bde04de12b 100644 --- a/lib/libRTV/md5.h +++ b/lib/libRTV/md5.h @@ -15,10 +15,10 @@ typedef struct uint32 state[4]; uint8 buffer[64]; } -md5_context; +rtv_md5_context; -void md5_starts( md5_context *ctx ); -void md5_update( md5_context *ctx, const uint8 *input, uint32 length ); -void md5_finish( md5_context *ctx, uint8 digest[16] ); +void rtv_md5_starts( rtv_md5_context *ctx ); +void rtv_md5_update( rtv_md5_context *ctx, const uint8 *input, uint32 length ); +void rtv_md5_finish( rtv_md5_context *ctx, uint8 digest[16] ); #endif /* md5.h */ |