Commit 2270d641 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Protect agains multiple includes

parent 1131285f
......@@ -21,6 +21,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#ifndef _VLC_DRMS_H
#define _VLC_DRMS_H 1
extern void *drms_alloc( char *psz_homedir );
extern void drms_free( void *p_drms );
extern int drms_init( void *p_drms, uint32_t i_type,
......@@ -28,3 +31,4 @@ extern int drms_init( void *p_drms, uint32_t i_type,
extern void drms_decrypt( void *p_drms, uint32_t *p_buffer,
uint32_t i_len );
#endif
......@@ -19,6 +19,9 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#ifndef _VLC_MP4_H
#define _VLC_MP4_H 1
#define FOURCC_uuid VLC_FOURCC( 'u', 'u', 'i', 'd' )
......@@ -922,3 +925,5 @@ int MP4_BoxCount( MP4_Box_t *p_box, char *psz_fmt, ... );
int MP4_ReadBoxCommon( stream_t *p_stream, MP4_Box_t *p_box );
int MP4_ReadBox_sample_vide( stream_t *p_stream, MP4_Box_t *p_box );
void MP4_FreeBox_sample_vide( MP4_Box_t *p_box );
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment