uiop_lib_custom.c

来自「ZORAN 962/966 SOURCE CODE,DVD chip」· C语言 代码 · 共 82 行

C
82
字号
/****************************************************************************************************
*  Copyright (c) 2005 ZORAN Corporation, All Rights Reserved
*  THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
*
*  File: ui_lip_custom.c
*
* Description:
* =========
****************************************************************************************************/
#include "Config.h"		// Global Configuration - do not remove!
#include "include\sysdefs.h"	// Global definition - do not remove!
/****************************************************************************************************
*	INCLUDE FILES
****************************************************************************************************/
// Include C Standard
// Include project specific
/****************************************************************************************************
*	DEFINITION: Private named constants
****************************************************************************************************/
/****************************************************************************************************
*	DEFINITION: Private macros
****************************************************************************************************/
/****************************************************************************************************
*	DEFINITION: Private typedefs 
****************************************************************************************************/
/****************************************************************************************************
*	DEFINITION: Public (global) variables
****************************************************************************************************/
/****************************************************************************************************
*	DEFINITION: Private (static) variables
****************************************************************************************************/
/****************************************************************************************************
*	DECLARATION: Private (static) functions
****************************************************************************************************/
/****************************************************************************************************
*	DEFINITION: Public functions
****************************************************************************************************/
/****************************************************************************************************
* Function		: Name
*
* Input		: Parameter_1 - description
*	 		  Parameter_2 - description
*
* Output		: Parameter_3 - description
*			  Parameter_4 - description
*
* Return		: Describe_possible_returned_values_and_their_meaning
*
* Description	: Describe_what_the_function_does_in_English
*  	
****************************************************************************************************/
/****************************************************************************************************
*	DEFINITION: Private functions
****************************************************************************************************/
//#define D_DEFINED_oUIOPFunctionMapTbl //define this to override the table
#ifdef D_DEFINED_oUIOPFunctionMapTbl
CONST oUIOPFunction oUIOPFunctionMapTbl[(UIOP_LAST&(~OPERATION_CLASS_USER))] =  
{
	...
};
#endif // D_DEFINED_oUIOPFunctionMapTbl

//#define D_DEFINED__UIOPLib_Scan //define this to override a function
#ifdef D_DEFINED__UIOPLib_Scan
/****************************************************************************************************
* Function	: _UIOPLib_Scan
*
* Input		: 
*
* Output		: None
*
* Return		: None
*
* Description	: Executes user requested operation and updates the UI messages accordingly
*	
****************************************************************************************************/
static void _UIOPLib_Scan(SCAN_DIRECTION ScanDirection)
{
	...
}
#endif // D_DEFINED__UIOPLib_Scan

⌨️ 快捷键说明

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