⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 o_search_defs.h

📁 Zoran V966 DVD 解码 Soc芯片的源程序
💻 H
字号:
/* **************************************************************************************
*  Copyright (c) 2005 ZORAN Corporation, All Rights Reserved
*  THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
*
*  File: $Workfile: o_timesearch_defs.h $
*
* Description:
* ============
*
****************************************************************************************/
#include "Config.h"		// Global Configuration - do not remove!

#ifndef __O_SEARCH_DEFS_H__
#define __O_SEARCH_DEFS_H__

#include "GUI\Menu_system\ms_component_defs.h"

/***************************************************************************************
* Time descriptor.
****************************************************************************************/
typedef struct ms_descriptor_time {
	MS_DESCRIPTOR 	moDescriptor;
	OSD_MESSAGES	mOsdLabel;
	CONST UINT8* 	mpBgBmp;		// Background bitmap
	UINT16			mwTextColor;		// Text color
}MS_DESCRIPTOR_TIME;

/***************************************************************************************
* Time search parameters.
************************************************************************************/
typedef struct ms_param_time {
	UINT32	mdwTime;
	UINT16	mwNumDigits;	//The number of total input digits.
}MS_PARAM_TIME;

/***************************************************************************************
* Time object.
****************************************************************************************/
typedef struct mso_time {	
	MSO_OBJECT 		moObject;
	MS_PARAM_TIME 	moParam;
}MSO_TIME;

/***************************************************************************************
* Track descriptor.
****************************************************************************************/
typedef MS_DESCRIPTOR_TIME MS_DESCRIPTOR_TRACK;

/***************************************************************************************
* The Search component descriptor.
****************************************************************************************/
typedef struct ms_descriptor_search {
	MS_DESCRIPTOR_COMPONENT 	moDescriptor;
	CONST UINT8* 				mpBgBmp;		// Background bitmap
	UINT16						mwTextColor;		// Text color	
}MS_DESCRIPTOR_SEARCH;

/***************************************************************************************
*  The Search component parameters.
************************************************************************************/
typedef struct ms_param_search {
	UINT16 	mwTrack;		// Track for VCD/CLIPS. Title for DVD.
	UINT16	mwChapter;	// Chapter for DVD. Not used otherwise.
#ifdef DVD_AUDIO_PAGE_SEARCH
	UINT16	mwPage;	// Page for DVD Audio. Not used otherwise.
#endif//DVD_AUDIO_PAGE_SEARCH
}MS_PARAM_SEARCH;

/***************************************************************************************
* The Search component object.
****************************************************************************************/
typedef struct mso_search {	
	MSO_COMPONENT 		moComponent;
	MS_PARAM_SEARCH		moParam;
}MSO_SEARCH;


#endif // __O_SEARCH_DEFS_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -