mirror of
https://github.com/halpz/re3.git
synced 2025-07-08 12:08:55 +00:00
Merge branch 'master' into miami
# Conflicts: # premake5.lua # sdk/rwsdk/include/d3d8/baaplylt.c # sdk/rwsdk/include/d3d8/rpstereo.h # sdk/rwsdk/include/d3d8/rpstereo.rpe # sdk/rwsdk/include/d3d8/rtintel.h # sdk/rwsdk/include/d3d8/rtintel.rpe # src/audio/oal/stream.cpp
This commit is contained in:
102
sdk/rwsdk/include/d3d8/rttoc.h
Normal file
102
sdk/rwsdk/include/d3d8/rttoc.h
Normal file
@ -0,0 +1,102 @@
|
||||
/******************************************************************************
|
||||
* *
|
||||
* Module : rttoc.h *
|
||||
* *
|
||||
* Purpose : Table Of Contents (TOC) *
|
||||
* *
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef RTTOC_H
|
||||
#define RTTOC_H
|
||||
|
||||
/**
|
||||
* \defgroup rttoc RtTOC
|
||||
* \ingroup streaming
|
||||
*
|
||||
* Table Of Contents (TOC) - creating a TOC for a stream.
|
||||
*/
|
||||
|
||||
/******************************************************************************
|
||||
Includes
|
||||
*/
|
||||
#include "rwcore.h"
|
||||
|
||||
#include "rpcriter.h"
|
||||
|
||||
/******************************************************************************
|
||||
Defines
|
||||
*/
|
||||
|
||||
/******************************************************************************
|
||||
Global Types
|
||||
*/
|
||||
|
||||
typedef struct _rtTOCGUID _rtTOCGUID;
|
||||
#if (!defined(DOXYGEN))
|
||||
struct _rtTOCGUID
|
||||
{
|
||||
RwUInt32 data1;
|
||||
RwUInt16 data2;
|
||||
RwUInt16 data3;
|
||||
RwUInt8 data4[8];
|
||||
};
|
||||
#endif /* (!defined(DOXYGEN)) */
|
||||
|
||||
typedef struct RtTOCEntry RtTOCEntry;
|
||||
/**
|
||||
* \ingroup rttoc
|
||||
* \struct RtTOCEntry
|
||||
*
|
||||
* A Table Of Contents (TOC) entry structure.
|
||||
*/
|
||||
struct RtTOCEntry
|
||||
{
|
||||
RwCorePluginID id; /**< Chunk ID */
|
||||
RwUInt32 gid; /**< Game ID */
|
||||
RwUInt32 offset; /**< Offset of chunk from the start of the file
|
||||
including TOC */
|
||||
_rtTOCGUID guid; /**< GUID */
|
||||
};
|
||||
|
||||
typedef struct RtTOC RtTOC;
|
||||
|
||||
/**
|
||||
* \ingroup rttoc
|
||||
* \struct RtTOC
|
||||
*
|
||||
* Table Of Contents (TOC) structure.
|
||||
*/
|
||||
struct RtTOC
|
||||
{
|
||||
RwInt32 numEntries; /**< Number of entries */
|
||||
RtTOCEntry entry[1]; /**< Entry */
|
||||
};
|
||||
|
||||
/******************************************************************************
|
||||
Function prototypes
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif /* __cplusplus */
|
||||
|
||||
/* Create/Destroy */
|
||||
extern RtTOC *RtTOCCreate(RwStream *stream);
|
||||
extern void RtTOCDestroy(RtTOC *toc);
|
||||
|
||||
/* Access */
|
||||
extern RwInt32 RtTOCGetNumEntries(const RtTOC *toc);
|
||||
extern RtTOCEntry *RtTOCGetEntry(RtTOC *toc, RwInt32 entry);
|
||||
|
||||
/* Serialization */
|
||||
extern RwUInt32 RtTOCStreamGetSize(const RtTOC *toc);
|
||||
extern const RtTOC *RtTOCStreamWrite(RtTOC *toc, RwStream *stream);
|
||||
extern RtTOC *RtTOCStreamRead(RwStream *stream);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* RTTOC_H */
|
Reference in New Issue
Block a user