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

📄 tray.h

📁 Zoran V966 DVD 解码 Soc芯片的源程序
💻 H
字号:
/**********************************************************************************
 *  Copyright (c) 2002 ZORAN Corporation, All Rights Reserved
 *  THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
 *
 *  File: $Workfile: tray.h $             
 *
 * Description:
 * ============
 * Tray handling API routines
 * 
 * Log:
 * ====
 * $Revision: $
 * Last Modified by $Author: $ at $Modtime: $ 
 **********************************************************************************
 * Updates:
 **********************************************************************************
 * $Log: $
 * 
 * 
 *********************************************************************************/
#include "Config.h"		/* Global Configuration - do not remove! */


#ifndef _TRAY_H
#define _TRAY_H


/*** Include Files ***************************************************************/
#include "Include\SysDefs.h"


/*** Defines *********************************************************************/


/*** Typedefs ********************************************************************/
typedef enum
{
	TRAY_CPU_TRAY_CLOSED_E		= (int)0x8200,
	TRAY_CPU_TRAY_OPENED_E		= (int)0x8201,
	TRAY_CPU_TRAY_PUSHED_E		= (int)0x8202
} TRAY_MSG_ET;


typedef enum
{
	TRAY_CPU_STATUS_ERROR_E		= 0,
	TRAY_CPU_STATUS_OK_E		= 1
} TRAY_STATUS_ET;


typedef void (* TRAY_CALLBACK_T)(TRAY_MSG_ET msg,
							     TRAY_STATUS_ET status);


/*** Public Functions ************************************************************/
void TRAY_Init(TRAY_CALLBACK_T cb);
void TRAY_Close(void);
void TRAY_Open(void);
void TRAY_Stop(void);


#endif

⌨️ 快捷键说明

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