mirror of
https://github.com/halpz/re3.git
synced 2025-07-05 04:00:46 +00:00
Move sdk and eax
This commit is contained in:
dxsdk/Include
premake5.luasdk
dx8sdk
Include
Amvideo.hBdatif.hDShow.h
DShowIDL
Bdatif.idlMpeg2Data.idlMpeg2Structs.idlMstvca.idlMstvgs.idlMsvidctl.idlSegment.idlVideoacc.idlVmrender.idlamstream.idlaustream.idlaxcore.idlaxextend.idlbdaiface.idlcontrol.odlddstream.idldevenum.idldmodshow.idldshowasf.idldvdif.idldxtrans.idldyngraph.idlmediaobj.idlmedparam.idlmixerocx.idlmmstream.idlmstve.idlqedit.idlregbag.idlsbe.idlstrmif.idltuner.idltvratings.idlvidcap.idlvmr9.idl
DxDiag.hIwstdec.hMpeg2Bits.hMpeg2Error.hMstvca.hMstve.hMsvidctl.hPixPlugin.hSegment.hactivecf.hamaudio.hamparse.hamstream.hamva.hatsmedia.haudevcod.haustream.haviriff.hbdaiface.hbdamedia.hbdatypes.hcomlite.hcontrol.hd3d.hd3d8.hd3d8caps.hd3d8types.hd3d9.hd3d9caps.hd3d9types.hd3dcaps.hd3drm.hd3drmdef.hd3drmobj.hd3drmwin.hd3dtypes.hd3dvec.inld3dx.hd3dx8.hd3dx8core.hd3dx8effect.hd3dx8math.hd3dx8math.inld3dx8mesh.hd3dx8shape.hd3dx8tex.hd3dx9.hd3dx9anim.hd3dx9core.hd3dx9effect.hd3dx9math.hd3dx9math.inld3dx9mesh.hd3dx9shader.hd3dx9shape.hd3dx9tex.hd3dx9xof.hd3dxcore.hd3dxerr.hd3dxmath.hd3dxmath.inld3dxshapes.hd3dxsprite.hddraw.hddstream.hdinput.hdinputd.hdls1.hdls2.hdmdls.hdmerror.hdmksctrl.hdmo.hdmodshow.hdmoimpl.hdmoreg.hdmort.hdmplugin.hdmusbuff.hdmusicc.hdmusicf.hdmusici.hdmusics.hdpaddr.hdplay.hdplay8.hdplobby.hdplobby8.hdpnathlp.hdsconf.hdsetup.hdshowasf.hdsound.hdv.hdvdevcod.hdvdmedia.hdvoice.hdvp.hdx7todx8.hdxerr8.hdxerr9.hdxfile.hdxtrans.hdxva.hedevctrl.hedevdefs.herrors.hevcode.hil21dec.hks.hksguid.hksmedia.hksproxy.hksuuids.hmediaerr.hmediaobj.hmedparam.hmixerocx.hmmstream.hmpconfig.hmpeg2data.hmpegtype.hmultimon.hplaylist.hqedit.hqnetwork.hregbag.hrmxfguid.hrmxftmpl.hsbe.hstrmif.hstrsafe.htune.htuner.htvratings.huuids.hvfwmsgs.hvidcap.hvideoacc.hvmr9.hvpconfig.hvpnotify.hvptype.hxprtdefs.hLib
milessdk
rwsdk
include
d3d8
baaplylt.cerrcom.deferrcore.defrpanisot.hrpanisot.rperpcollis.hrpcollis.rperpcriter.hrpdbgerr.crpdbgerr.hrpdmorph.hrpdmorph.rperperror.hrphanim.hrphanim.rperplodatm.hrplodatm.rperplogo.hrplogo.rperpltmap.hrpltmap.rperpmatfx.hrpmatfx.rperpmipkl.hrpmipkl.rperpmorph.hrpmorph.rperppatch.hrppatch.rperpprtstd.hrpprtstd.rperpptank.hrpptank.rperppvs.hrppvs.rperprandom.hrprandom.rperpskin.hrpskin.rperpspline.hrpspline.rperpstereo.hrpstereo.rperpusrdat.hrpusrdat.rperpworld.hrpworld.rpert2d.hrt2d.rpert2danim.hrt2danim.rpertbary.hrtbary.rpertbezpat.hrtbezpat.rpertbmp.hrtbmp.rpertcharse.hrtcharse.rpertimport.hrtimport.rpertintel.hrtintel.rpertintsec.hrtintsec.rpertltmap.hrtltmap.rpertmipk.hrtmipk.rpertpick.hrtpick.rpertpitexd.hrtpitexd.rpertpng.hrtpng.rpertquat.hrtquat.rpertras.hrtras.rpertray.hrtray.rpertslerp.hrtslerp.rpertsplpvs.hrtsplpvs.rperttiff.hrttiff.rperttilerd.hrttilerd.rperttoc.hrttoc.rpertvcat.hrtvcat.rpertworld.hrtworld.rperwcore.hrwplcore.h
src/audio/eax
95
sdk/dx8sdk/Include/Mpeg2Bits.h
Normal file
95
sdk/dx8sdk/Include/Mpeg2Bits.h
Normal file
@ -0,0 +1,95 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// Module Name:
|
||||
//
|
||||
// Mpeg2Bits.h
|
||||
//
|
||||
// Abstract:
|
||||
//
|
||||
// This file defines the MPEG-2 section header bitfields. These are
|
||||
// defined here instead of in mpegstructs.idl because of MIDL
|
||||
// compiler conflicts with bitfield definitions.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
|
||||
#pragma pack(push)
|
||||
#pragma pack(1)
|
||||
|
||||
|
||||
//
|
||||
// PID structure
|
||||
//
|
||||
|
||||
#ifdef __midl
|
||||
|
||||
typedef struct
|
||||
{
|
||||
WORD Bits;
|
||||
} PID_BITS_MIDL;
|
||||
|
||||
#else
|
||||
|
||||
typedef struct
|
||||
{
|
||||
WORD Reserved : 3;
|
||||
WORD ProgramId : 13;
|
||||
} PID_BITS, *PPID_BITS;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
//
|
||||
// Generic MPEG packet header structure
|
||||
//
|
||||
|
||||
#ifdef __midl
|
||||
|
||||
typedef struct
|
||||
{
|
||||
WORD Bits;
|
||||
} MPEG_HEADER_BITS_MIDL;
|
||||
|
||||
#else
|
||||
|
||||
typedef struct
|
||||
{
|
||||
WORD SectionLength : 12;
|
||||
WORD Reserved : 2;
|
||||
WORD PrivateIndicator : 1;
|
||||
WORD SectionSyntaxIndicator : 1;
|
||||
} MPEG_HEADER_BITS, *PMPEG_HEADER_BITS;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
//
|
||||
// Long MPEG packet header structure
|
||||
//
|
||||
|
||||
#ifdef __midl
|
||||
|
||||
typedef struct
|
||||
{
|
||||
BYTE Bits;
|
||||
} MPEG_HEADER_VERSION_BITS_MIDL;
|
||||
|
||||
#else
|
||||
|
||||
typedef struct
|
||||
{
|
||||
BYTE CurrentNextIndicator : 1;
|
||||
BYTE VersionNumber : 5;
|
||||
BYTE Reserved : 2;
|
||||
} MPEG_HEADER_VERSION_BITS, *PMPEG_HEADER_VERSION_BITS;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#pragma pack(pop)
|
Reference in New Issue
Block a user