| Index: source/libvpx/md5_utils.h
|
| ===================================================================
|
| --- source/libvpx/md5_utils.h (revision 247498)
|
| +++ source/libvpx/md5_utils.h (working copy)
|
| @@ -23,6 +23,10 @@
|
| #ifndef MD5_UTILS_H_
|
| #define MD5_UTILS_H_
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| #define md5byte unsigned char
|
| #define UWORD32 unsigned int
|
|
|
| @@ -38,4 +42,8 @@
|
| void MD5Final(unsigned char digest[16], struct MD5Context *context);
|
| void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]);
|
|
|
| +#ifdef __cplusplus
|
| +} // extern "C"
|
| +#endif
|
| +
|
| #endif // MD5_UTILS_H_
|
|
|