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

📄 init.h

📁 这是DVD中伺服部分的核心代码
💻 H
字号:
/*****************************************************************************
******************************************************************************
**                                                                          **
**  Copyright (c) 2002 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 init.h
 *
 * $Id: init.h,v 1.25 2006/09/13 15:54:25 rbehe Exp $
 */

#ifndef _INIT_H
#define _INIT_H

#ifdef __cplusplus
extern "C" {
#endif

typedef enum _tagAV_PLAY_STATE
{
    UNKNOWN,
    AVSYNC,
    NORMAL_PLAY,
    FORWARD,
    PAUSE,
    REVERSE,
    STOP,
    FORWARD_SEARCH,
    BACKWARD_SEARCH
} AV_PLAY_STATE;

void play_ni(void);
void dvd(void);
void start_display(void);
void audio_gap(ULONG * A_S_PTM1, ULONG * A_S_PTM2, ULONG * A_GAP_LEN1, ULONG * A_GAP_LEN2);
void karaoke(UBYTE, UBYTE);
void ac3f_id(UBYTE);
void cc_parse(void);
void clear_caption(void);

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

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