X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=inline;f=include%2Fvlc_md5.h;h=d05126980ffacc7e6778cdc35a74339374386292;hb=c60652e38ac6afd74bd8225e9dae5406f13aaa4f;hp=47f5d0b9e59a0d52a6e15fccb4ea460ebe43f418;hpb=89e093a7a1f0b47b17bd6b1236567efb0de142d5;p=vlc diff --git a/include/vlc_md5.h b/include/vlc_md5.h index 47f5d0b9e5..d05126980f 100644 --- a/include/vlc_md5.h +++ b/include/vlc_md5.h @@ -22,12 +22,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif +#ifndef VLC_MD5_H +# define VLC_MD5_H -#ifndef _VLC_MD5_H -# define _VLC_MD5_H +/** + * \file + * This file defines functions and structures for handling md5 checksums + */ /***************************************************************************** * md5_s: MD5 message structure @@ -46,7 +47,7 @@ VLC_EXPORT(void, InitMD5, ( struct md5_s * ) ); VLC_EXPORT(void, AddMD5, ( struct md5_s *, const void *, size_t ) ); VLC_EXPORT(void, EndMD5, ( struct md5_s * ) ); -/** +/** * Returns a char representation of the md5 hash, as shown by UNIX md5 or * md5sum tools. */