Logo.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:2k
- /****************************************************************************************
- * Copyright (c) 2002 ZORAN Corporation, All Rights Reserved
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
- *
- * File: $Workfile: Logo.h $
- *
- * Description:
- * ============
- *
- *
- * Log:
- * ====
- * $Revision: 4 $
- * Last Modified by $Author: Chaol $ at $Modtime: 9/29/03 12:48p $
- ****************************************************************************************
- * Updates:
- ****************************************************************************************
- * $Log: /I76/I76_Common/I76_Reference/Logo/Logo.h $
- *
- * 4 9/29/03 11:52a Chaol
- * code clear
- *
- * 3 03-06-30 16:42 Leslie
- * Merge for Alco Step A code
- *
- * 2 03-01-09 4:38 Leslie
- *
- * 5 23/04/02 9:27 Nirm
- * - Added dependency in "Config.h".
- *
- * 4 10/04/02 11:47 Ettim
- * Added the method Logo_getCurrentSource()
- *
- * 3 24/03/02 12:08 Nirm
- * Added Logo_getBackgroundColor().
- *
- * 2 3/05/02 5:53a Dingming
- * support frame display switch
- *
- * 1 31/01/02 16:23 Nirm
- ****************************************************************************************/
- /////////////////////////////////////////////////////////////////////////////
- // Logo.h - Logo/Background management
- //
- // Author: Nir Milstein
- #include "Config.h" // Global Configuration - do not remove!
- #ifndef __LOGO_H_
- #define __LOGO_H_
- #include "IncludeSysDefs.h"
- /////////////////////////////////////////////////////////////////////////////
- // Constants and Enumerations
- typedef enum {
- eJacketPicture,
- eFlash,
- eFrame,
- eBackground,
- eStartup,
- eMenuBackground, // To Display 2nd Logo for Menu
- eNone
- } enLogoSource;
- /////////////////////////////////////////////////////////////////////////////
- // Services
- void Logo_setBackgroundColor(UINT8 ucY_Component, UINT8 ucU_Component, UINT8 ucV_Component);
- void Logo_getBackgroundColor(UINT8 *o_pY_Component, UINT8 *o_pU_Component, UINT8 *o_pV_Component);
- void Logo_selectSource(enLogoSource eSoruce);
- enLogoSource Logo_getCurrentSource(void);
- void Logo_display(void);
- void Logo_clear(void);
- #endif //__LOGO_H_