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

📄 readdir.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 readdir.h
 *
 * $Id: readdir.h,v 1.7 2006/10/04 21:30:25 rbehe Exp $
 */

#ifndef _READDIR_H
#define _READDIR_H

#ifdef __cplusplus
extern "C" {
#endif

/*structures*/
typedef struct
{
    ULONG ifo_address;
    ULONG ifo_length;
    ULONG bup_address;
    ULONG bup_length;
    ULONG vob_address;
    ULONG vob_length;
    UBYTE vob_cgms;
    UBYTE present;
    UBYTE vts_num_max;
} VMG_FILE_STRUCT;

typedef struct
{
    ULONG ifo_address;
    ULONG ifo_length;
    ULONG bup_address;
    ULONG bup_length;
    UBYTE present;
    UBYTE ats_num_max;
} AMG_FILE_STRUCT;

typedef struct
{
    ULONG address;
    ULONG length;
    UBYTE cgms;
} TITLE_SET_OBJ;


typedef struct
{
    ULONG ifo_address;
    ULONG ifo_length;
    ULONG bup_address;
    ULONG bup_length;
    UBYTE tso_num;
    TITLE_SET_OBJ ts[11];
} TITLE_SET_FILE_STRUCT;

/* function prototypes */
BOOLEAN ReaddirIsVidTS(LOADER_HANDLE tLoader);
BOOLEAN ReaddirIsAudTS(LOADER_HANDLE tLoader);
UBYTE read_directory(void);

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

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