/**********************************************************************

Copyright(c) Analog Devices, Inc. All Rights Reserved. 

This software is proprietary and confidential.  By using this software 
you agree to the terms of the associated Analog Devices License Agreement.  

$RCSfile: BitmapViewer.h,v $
$Revision: 1.1 $
$Date: 2008/06/06 06:08:54 $

Description:
	
******************************************************************************

Include files

*****************************************************************************/

#ifndef __BITMAPVIEWER_H__
#define __BITMAPVIEWER_H__

#include <MediaPlayer.h>

/*****************************************************************************

Function prototypes

*****************************************************************************/ 
/* Displays a Bitmap image */
u32 DisplayBitmap(
    char                *szFileName,        /* Bitmap file name including complete path */
    u8                  *pVideoDataBuffer  /* Video data buffer to use                 */
);
u32 DisplayRAW(
    char                *szFileName,        /* Bitmap file name including complete path */
    u8                  *pVideoDataBuffer  /* Video data buffer to use                 */
);
#endif /*__BITMAPVIEWER_H__*/

/*****/
