eventmgr.h

来自「这是DVD中伺服部分的核心代码」· C头文件 代码 · 共 54 行

H
54
字号
/*****************************************************************************
******************************************************************************
**                                                                          **
**  Copyright (c) 2005-2006 Videon Central, Inc.                            **
**  All rights reserved.                                                    **
**                                                                          **
**  The computer program contained herein contains proprietary information  **
**  which is the property of Videon Central, Inc.  The program may be used  **
**  and/or copied only with the written permission of Videon Central, Inc.  **
**  or in accordance with the terms and conditions stipulated in the        **
**  agreement/contract under which the programs have been supplied.         **
**                                                                          **
******************************************************************************
*****************************************************************************/
/**
 * @file eventmgr.h
 *
 * Defines the API to the User Event Manager.
 * The User Event Manager receives user events and generates
 * either a User Operation (UO) or a BD-J Key Event.
 *
 * $Id: eventmgr.h,v 1.8 2006/10/25 23:50:09 rbehe Exp $
 */

#ifndef EVENTMGR_H
#define EVENTMGR_H

#ifdef __cplusplus
extern "C" {
#endif

#include "vdvd_types.h"
#include "modmgr_private.h"

/**
 * User Event Manager Status types
 */
typedef  ERR_CODE EVENTMGR_STATUS;
#define  EVENTMGR_SUCCESS           (EVENTMGR_STATUS)(0)
#define  EVENTMGR_FAILURE           (EVENTMGR_STATUS)(-1)
#define  EVENTMGR_NULL_POINTER      (EVENTMGR_STATUS)(-2)
#define  EVENTMGR_NOT_IMPLEMENTED   (EVENTMGR_STATUS)(-3)

/**
 * User Event Manager procedures
 */
EVENTMGR_STATUS EventMgrProcessCmd(MODMGR_STATE_INFO *pStateInfo, MODMGR_COMMAND cmd, ULONG ulParam);

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

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