mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-26 23:00:30 +00:00
more dx scaffolding
This commit is contained in:
parent
f5874cfb60
commit
1c5ee2f70f
12
DXsound.cpp
12
DXsound.cpp
@ -1,4 +1,5 @@
|
||||
#include "DXsound.h"
|
||||
#include "validate.h"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
@ -273,7 +274,8 @@ EXPORT char* gDxKeyNames[0x100] =
|
||||
".FF.",
|
||||
};
|
||||
|
||||
EXPORT IDirectInputA* gDxInputDinput;
|
||||
|
||||
EXPORT IDirectInputA* g_pDI;
|
||||
EXPORT HWND gDxInputHwnd;
|
||||
EXPORT u8 gDxInputRelated;
|
||||
|
||||
@ -316,7 +318,7 @@ i32 DXINPUT_GetNumControllerButtons(void)
|
||||
// @Matching
|
||||
void DXINPUT_Initialize(IDirectInputA* a1, HWND a2)
|
||||
{
|
||||
gDxInputDinput = a1;
|
||||
g_pDI = a1;
|
||||
gDxInputHwnd = a2;
|
||||
|
||||
gKeyBoardRelated = 0;
|
||||
@ -397,6 +399,7 @@ i32 DXINPUT_SetupKeyboard(i32,i32)
|
||||
// @MEDIUMTODO
|
||||
i32 DXINPUT_SetupMouse(i32)
|
||||
{
|
||||
g_pDI->CreateDevice(GUID_SysMouse, NULL, NULL);
|
||||
printf("DXINPUT_SetupMouse(i32)");
|
||||
return 0x23082024;
|
||||
}
|
||||
@ -624,3 +627,8 @@ void stateLog(char const *,...)
|
||||
{
|
||||
printf("stateLog(char const *,...)");
|
||||
}
|
||||
|
||||
void validate_DXsound(void)
|
||||
{
|
||||
VALIDATE_SIZE(_GUID, 0x16);
|
||||
}
|
||||
|
13
DXsound.h
13
DXsound.h
@ -6,10 +6,10 @@
|
||||
#include "export.h"
|
||||
|
||||
#include "non_win32.h"
|
||||
#include "my_dx.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#endif
|
||||
|
||||
/*
|
||||
//@FIXME
|
||||
typedef void* _DDPIXELFORMAT;
|
||||
//@FIXME
|
||||
@ -17,9 +17,12 @@ typedef void* IDirectDrawSurface7;
|
||||
//@FIXME
|
||||
typedef void* IDirectInputA;
|
||||
//@FIXME
|
||||
typedef void* _DXPOLY;
|
||||
//@FIXME
|
||||
typedef void* DIDEVICEINSTANCEA;
|
||||
*/
|
||||
#endif
|
||||
|
||||
//@FIXME
|
||||
typedef void* _DXPOLY;
|
||||
|
||||
|
||||
|
||||
@ -80,4 +83,6 @@ EXPORT void stateLog(char const *,...);
|
||||
|
||||
EXPORT extern IDirectInputA* gDirectInputRelated;
|
||||
|
||||
void validate_DXsound(void);
|
||||
|
||||
#endif
|
||||
|
8
PCTex.h
8
PCTex.h
@ -6,10 +6,12 @@
|
||||
#include "export.h"
|
||||
#include "bitmap256.h"
|
||||
#include "non_win32.h"
|
||||
#include "my_dx.h"
|
||||
|
||||
// @FIXME
|
||||
#define PCTexture i32
|
||||
|
||||
#ifndef _WIN32
|
||||
//@FIXME
|
||||
typedef void* _DDPIXELFORMAT;
|
||||
//@FIXME
|
||||
@ -17,9 +19,11 @@ typedef void* IDirectDrawSurface7;
|
||||
//@FIXME
|
||||
typedef void* IDirectInputA;
|
||||
//@FIXME
|
||||
typedef void* _DXPOLY;
|
||||
//@FIXME
|
||||
typedef void* DIDEVICEINSTANCEA;
|
||||
#endif
|
||||
|
||||
//@FIXME
|
||||
typedef void* _DXPOLY;
|
||||
|
||||
|
||||
struct ClutPC
|
||||
|
@ -9,6 +9,13 @@
|
||||
#ifndef _D3D_H_
|
||||
#define _D3D_H_
|
||||
|
||||
#ifndef DIRECT3D_VERSION
|
||||
#define DIRECT3D_VERSION 0x0700
|
||||
#endif
|
||||
|
||||
// include this file content only if compiling for <=DX7 interfaces
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
@ -17,10 +24,6 @@
|
||||
|
||||
#define D3DAPI WINAPI
|
||||
|
||||
#ifndef DIRECT3D_VERSION
|
||||
#define DIRECT3D_VERSION 0x0700
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Interface IID's
|
||||
*/
|
||||
@ -1679,5 +1682,6 @@ typedef struct IDirect3DVertexBuffer7 *LPDIRECT3DVERTEXBUFFER7;
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif /* (DIRECT3D_VERSION < 0x0800) */
|
||||
#endif /* _D3D_H_ */
|
||||
|
||||
|
@ -558,6 +558,8 @@ typedef struct _D3DExecuteBufferDesc {
|
||||
#define D3DDEBCAPS_VIDEOMEMORY 0x00000002l /* buffer in device memory */
|
||||
#define D3DDEBCAPS_MEM (D3DDEBCAPS_SYSTEMMEMORY|D3DDEBCAPS_VIDEOMEMORY)
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#if(DIRECT3D_VERSION >= 0x0700)
|
||||
typedef struct _D3DDEVINFO_TEXTUREMANAGER {
|
||||
BOOL bThrashing; /* indicates if thrashing */
|
||||
@ -587,7 +589,10 @@ typedef struct _D3DDEVINFO_TEXTURING {
|
||||
} D3DDEVINFO_TEXTURING, *LPD3DDEVINFO_TEXTURING;
|
||||
#endif /* DIRECT3D_VERSION >= 0x0700 */
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#pragma pack()
|
||||
|
||||
|
||||
#endif /* _D3DCAPS_H_ */
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
*
|
||||
* Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
|
||||
*
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
@ -25,8 +25,8 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
DEFINE_GUID(IID_IDirect3DRM, 0x2bc49361, 0x8327, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRM2, 0x4516ecc8, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRM, 0x2bc49361, 0x8327, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRM2, 0x4516ecc8, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRM3, 0x4516ec83, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
WIN_TYPES(IDirect3DRM, DIRECT3DRM);
|
||||
WIN_TYPES(IDirect3DRM2, DIRECT3DRM2);
|
||||
@ -49,78 +49,78 @@ DECLARE_INTERFACE_(IDirect3DRM, IUnknown)
|
||||
IUNKNOWN_METHODS(PURE);
|
||||
|
||||
STDMETHOD(CreateObject)
|
||||
(THIS_ REFCLSID rclsid, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID FAR* ppv) PURE;
|
||||
STDMETHOD(CreateFrame) (THIS_ LPDIRECT3DRMFRAME, LPDIRECT3DRMFRAME *) PURE;
|
||||
STDMETHOD(CreateMesh) (THIS_ LPDIRECT3DRMMESH *) PURE;
|
||||
(THIS_ REFCLSID rclsid, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID FAR* ppv) PURE;
|
||||
STDMETHOD(CreateFrame) (THIS_ LPDIRECT3DRMFRAME, LPDIRECT3DRMFRAME *) PURE;
|
||||
STDMETHOD(CreateMesh) (THIS_ LPDIRECT3DRMMESH *) PURE;
|
||||
STDMETHOD(CreateMeshBuilder)(THIS_ LPDIRECT3DRMMESHBUILDER *) PURE;
|
||||
STDMETHOD(CreateFace) (THIS_ LPDIRECT3DRMFACE *) PURE;
|
||||
STDMETHOD(CreateAnimation) (THIS_ LPDIRECT3DRMANIMATION *) PURE;
|
||||
STDMETHOD(CreateFace) (THIS_ LPDIRECT3DRMFACE *) PURE;
|
||||
STDMETHOD(CreateAnimation) (THIS_ LPDIRECT3DRMANIMATION *) PURE;
|
||||
STDMETHOD(CreateAnimationSet)(THIS_ LPDIRECT3DRMANIMATIONSET *) PURE;
|
||||
STDMETHOD(CreateTexture) (THIS_ LPD3DRMIMAGE, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
STDMETHOD(CreateLight) (THIS_ D3DRMLIGHTTYPE, D3DCOLOR, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateTexture) (THIS_ LPD3DRMIMAGE, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
STDMETHOD(CreateLight) (THIS_ D3DRMLIGHTTYPE, D3DCOLOR, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateLightRGB)
|
||||
(THIS_ D3DRMLIGHTTYPE, D3DVALUE, D3DVALUE, D3DVALUE, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateMaterial) (THIS_ D3DVALUE, LPDIRECT3DRMMATERIAL *) PURE;
|
||||
STDMETHOD(CreateDevice) (THIS_ DWORD, DWORD, LPDIRECT3DRMDEVICE *) PURE;
|
||||
(THIS_ D3DRMLIGHTTYPE, D3DVALUE, D3DVALUE, D3DVALUE, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateMaterial) (THIS_ D3DVALUE, LPDIRECT3DRMMATERIAL *) PURE;
|
||||
STDMETHOD(CreateDevice) (THIS_ DWORD, DWORD, LPDIRECT3DRMDEVICE *) PURE;
|
||||
|
||||
/* Create a Windows Device using DirectDraw surfaces */
|
||||
STDMETHOD(CreateDeviceFromSurface)
|
||||
( THIS_ LPGUID lpGUID, LPDIRECTDRAW lpDD,
|
||||
LPDIRECTDRAWSURFACE lpDDSBack, LPDIRECT3DRMDEVICE *
|
||||
( THIS_ LPGUID lpGUID, LPDIRECTDRAW lpDD,
|
||||
LPDIRECTDRAWSURFACE lpDDSBack, LPDIRECT3DRMDEVICE *
|
||||
) PURE;
|
||||
|
||||
/* Create a Windows Device using D3D objects */
|
||||
STDMETHOD(CreateDeviceFromD3D)
|
||||
( THIS_ LPDIRECT3D lpD3D, LPDIRECT3DDEVICE lpD3DDev,
|
||||
LPDIRECT3DRMDEVICE *
|
||||
( THIS_ LPDIRECT3D lpD3D, LPDIRECT3DDEVICE lpD3DDev,
|
||||
LPDIRECT3DRMDEVICE *
|
||||
) PURE;
|
||||
|
||||
STDMETHOD(CreateDeviceFromClipper)
|
||||
( THIS_ LPDIRECTDRAWCLIPPER lpDDClipper, LPGUID lpGUID,
|
||||
int width, int height, LPDIRECT3DRMDEVICE *) PURE;
|
||||
( THIS_ LPDIRECTDRAWCLIPPER lpDDClipper, LPGUID lpGUID,
|
||||
int width, int height, LPDIRECT3DRMDEVICE *) PURE;
|
||||
|
||||
STDMETHOD(CreateTextureFromSurface)(THIS_ LPDIRECTDRAWSURFACE lpDDS, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
|
||||
STDMETHOD(CreateShadow)
|
||||
( THIS_ LPDIRECT3DRMVISUAL, LPDIRECT3DRMLIGHT,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
|
||||
LPDIRECT3DRMVISUAL *
|
||||
( THIS_ LPDIRECT3DRMVISUAL, LPDIRECT3DRMLIGHT,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
|
||||
LPDIRECT3DRMVISUAL *
|
||||
) PURE;
|
||||
STDMETHOD(CreateViewport)
|
||||
( THIS_ LPDIRECT3DRMDEVICE, LPDIRECT3DRMFRAME, DWORD, DWORD,
|
||||
DWORD, DWORD, LPDIRECT3DRMVIEWPORT *
|
||||
( THIS_ LPDIRECT3DRMDEVICE, LPDIRECT3DRMFRAME, DWORD, DWORD,
|
||||
DWORD, DWORD, LPDIRECT3DRMVIEWPORT *
|
||||
) PURE;
|
||||
STDMETHOD(CreateWrap)
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv,
|
||||
LPDIRECT3DRMWRAP *
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv,
|
||||
LPDIRECT3DRMWRAP *
|
||||
) PURE;
|
||||
STDMETHOD(CreateUserVisual) (THIS_ D3DRMUSERVISUALCALLBACK, LPVOID lPArg, LPDIRECT3DRMUSERVISUAL *) PURE;
|
||||
STDMETHOD(LoadTexture) (THIS_ const char *, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
STDMETHOD(LoadTextureFromResource) (THIS_ HRSRC rs, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
STDMETHOD(LoadTexture) (THIS_ const char *, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
STDMETHOD(LoadTextureFromResource) (THIS_ HRSRC rs, LPDIRECT3DRMTEXTURE *) PURE;
|
||||
|
||||
STDMETHOD(SetSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(AddSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(GetSearchPath) (THIS_ DWORD *size_return, LPSTR path_return) PURE;
|
||||
STDMETHOD(SetSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(AddSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(GetSearchPath) (THIS_ DWORD *size_return, LPSTR path_return) PURE;
|
||||
STDMETHOD(SetDefaultTextureColors)(THIS_ DWORD) PURE;
|
||||
STDMETHOD(SetDefaultTextureShades)(THIS_ DWORD) PURE;
|
||||
|
||||
STDMETHOD(GetDevices) (THIS_ LPDIRECT3DRMDEVICEARRAY *) PURE;
|
||||
STDMETHOD(GetNamedObject) (THIS_ const char *, LPDIRECT3DRMOBJECT *) PURE;
|
||||
STDMETHOD(GetDevices) (THIS_ LPDIRECT3DRMDEVICEARRAY *) PURE;
|
||||
STDMETHOD(GetNamedObject) (THIS_ const char *, LPDIRECT3DRMOBJECT *) PURE;
|
||||
|
||||
STDMETHOD(EnumerateObjects) (THIS_ D3DRMOBJECTCALLBACK, LPVOID) PURE;
|
||||
STDMETHOD(EnumerateObjects) (THIS_ D3DRMOBJECTCALLBACK, LPVOID) PURE;
|
||||
|
||||
STDMETHOD(Load)
|
||||
STDMETHOD(Load)
|
||||
( THIS_ LPVOID, LPVOID, LPIID *, DWORD, D3DRMLOADOPTIONS,
|
||||
D3DRMLOADCALLBACK, LPVOID, D3DRMLOADTEXTURECALLBACK, LPVOID,
|
||||
LPDIRECT3DRMFRAME
|
||||
D3DRMLOADCALLBACK, LPVOID, D3DRMLOADTEXTURECALLBACK, LPVOID,
|
||||
LPDIRECT3DRMFRAME
|
||||
) PURE;
|
||||
STDMETHOD(Tick) (THIS_ D3DVALUE) PURE;
|
||||
STDMETHOD(Tick) (THIS_ D3DVALUE) PURE;
|
||||
};
|
||||
|
||||
#undef INTERFACE
|
||||
@ -131,78 +131,78 @@ DECLARE_INTERFACE_(IDirect3DRM2, IUnknown)
|
||||
IUNKNOWN_METHODS(PURE);
|
||||
|
||||
STDMETHOD(CreateObject)
|
||||
(THIS_ REFCLSID rclsid, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID FAR* ppv) PURE;
|
||||
STDMETHOD(CreateFrame) (THIS_ LPDIRECT3DRMFRAME, LPDIRECT3DRMFRAME2 *) PURE;
|
||||
STDMETHOD(CreateMesh) (THIS_ LPDIRECT3DRMMESH *) PURE;
|
||||
(THIS_ REFCLSID rclsid, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID FAR* ppv) PURE;
|
||||
STDMETHOD(CreateFrame) (THIS_ LPDIRECT3DRMFRAME, LPDIRECT3DRMFRAME2 *) PURE;
|
||||
STDMETHOD(CreateMesh) (THIS_ LPDIRECT3DRMMESH *) PURE;
|
||||
STDMETHOD(CreateMeshBuilder)(THIS_ LPDIRECT3DRMMESHBUILDER2 *) PURE;
|
||||
STDMETHOD(CreateFace) (THIS_ LPDIRECT3DRMFACE *) PURE;
|
||||
STDMETHOD(CreateAnimation) (THIS_ LPDIRECT3DRMANIMATION *) PURE;
|
||||
STDMETHOD(CreateFace) (THIS_ LPDIRECT3DRMFACE *) PURE;
|
||||
STDMETHOD(CreateAnimation) (THIS_ LPDIRECT3DRMANIMATION *) PURE;
|
||||
STDMETHOD(CreateAnimationSet)(THIS_ LPDIRECT3DRMANIMATIONSET *) PURE;
|
||||
STDMETHOD(CreateTexture) (THIS_ LPD3DRMIMAGE, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
STDMETHOD(CreateLight) (THIS_ D3DRMLIGHTTYPE, D3DCOLOR, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateTexture) (THIS_ LPD3DRMIMAGE, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
STDMETHOD(CreateLight) (THIS_ D3DRMLIGHTTYPE, D3DCOLOR, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateLightRGB)
|
||||
(THIS_ D3DRMLIGHTTYPE, D3DVALUE, D3DVALUE, D3DVALUE, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateMaterial) (THIS_ D3DVALUE, LPDIRECT3DRMMATERIAL *) PURE;
|
||||
STDMETHOD(CreateDevice) (THIS_ DWORD, DWORD, LPDIRECT3DRMDEVICE2 *) PURE;
|
||||
(THIS_ D3DRMLIGHTTYPE, D3DVALUE, D3DVALUE, D3DVALUE, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateMaterial) (THIS_ D3DVALUE, LPDIRECT3DRMMATERIAL *) PURE;
|
||||
STDMETHOD(CreateDevice) (THIS_ DWORD, DWORD, LPDIRECT3DRMDEVICE2 *) PURE;
|
||||
|
||||
/* Create a Windows Device using DirectDraw surfaces */
|
||||
STDMETHOD(CreateDeviceFromSurface)
|
||||
( THIS_ LPGUID lpGUID, LPDIRECTDRAW lpDD,
|
||||
LPDIRECTDRAWSURFACE lpDDSBack, LPDIRECT3DRMDEVICE2 *
|
||||
( THIS_ LPGUID lpGUID, LPDIRECTDRAW lpDD,
|
||||
LPDIRECTDRAWSURFACE lpDDSBack, LPDIRECT3DRMDEVICE2 *
|
||||
) PURE;
|
||||
|
||||
/* Create a Windows Device using D3D objects */
|
||||
STDMETHOD(CreateDeviceFromD3D)
|
||||
( THIS_ LPDIRECT3D2 lpD3D, LPDIRECT3DDEVICE2 lpD3DDev,
|
||||
LPDIRECT3DRMDEVICE2 *
|
||||
( THIS_ LPDIRECT3D2 lpD3D, LPDIRECT3DDEVICE2 lpD3DDev,
|
||||
LPDIRECT3DRMDEVICE2 *
|
||||
) PURE;
|
||||
|
||||
STDMETHOD(CreateDeviceFromClipper)
|
||||
( THIS_ LPDIRECTDRAWCLIPPER lpDDClipper, LPGUID lpGUID,
|
||||
int width, int height, LPDIRECT3DRMDEVICE2 *) PURE;
|
||||
( THIS_ LPDIRECTDRAWCLIPPER lpDDClipper, LPGUID lpGUID,
|
||||
int width, int height, LPDIRECT3DRMDEVICE2 *) PURE;
|
||||
|
||||
STDMETHOD(CreateTextureFromSurface)(THIS_ LPDIRECTDRAWSURFACE lpDDS, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
|
||||
STDMETHOD(CreateShadow)
|
||||
( THIS_ LPDIRECT3DRMVISUAL, LPDIRECT3DRMLIGHT,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
|
||||
LPDIRECT3DRMVISUAL *
|
||||
( THIS_ LPDIRECT3DRMVISUAL, LPDIRECT3DRMLIGHT,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
|
||||
LPDIRECT3DRMVISUAL *
|
||||
) PURE;
|
||||
STDMETHOD(CreateViewport)
|
||||
( THIS_ LPDIRECT3DRMDEVICE, LPDIRECT3DRMFRAME, DWORD, DWORD,
|
||||
DWORD, DWORD, LPDIRECT3DRMVIEWPORT *
|
||||
( THIS_ LPDIRECT3DRMDEVICE, LPDIRECT3DRMFRAME, DWORD, DWORD,
|
||||
DWORD, DWORD, LPDIRECT3DRMVIEWPORT *
|
||||
) PURE;
|
||||
STDMETHOD(CreateWrap)
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv,
|
||||
LPDIRECT3DRMWRAP *
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv,
|
||||
LPDIRECT3DRMWRAP *
|
||||
) PURE;
|
||||
STDMETHOD(CreateUserVisual) (THIS_ D3DRMUSERVISUALCALLBACK, LPVOID lPArg, LPDIRECT3DRMUSERVISUAL *) PURE;
|
||||
STDMETHOD(LoadTexture) (THIS_ const char *, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
STDMETHOD(LoadTextureFromResource) (THIS_ HMODULE hModule, LPCTSTR strName, LPCTSTR strType, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
STDMETHOD(LoadTexture) (THIS_ const char *, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
STDMETHOD(LoadTextureFromResource) (THIS_ HMODULE hModule, LPCTSTR strName, LPCTSTR strType, LPDIRECT3DRMTEXTURE2 *) PURE;
|
||||
|
||||
STDMETHOD(SetSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(AddSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(GetSearchPath) (THIS_ DWORD *size_return, LPSTR path_return) PURE;
|
||||
STDMETHOD(SetSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(AddSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(GetSearchPath) (THIS_ DWORD *size_return, LPSTR path_return) PURE;
|
||||
STDMETHOD(SetDefaultTextureColors)(THIS_ DWORD) PURE;
|
||||
STDMETHOD(SetDefaultTextureShades)(THIS_ DWORD) PURE;
|
||||
|
||||
STDMETHOD(GetDevices) (THIS_ LPDIRECT3DRMDEVICEARRAY *) PURE;
|
||||
STDMETHOD(GetNamedObject) (THIS_ const char *, LPDIRECT3DRMOBJECT *) PURE;
|
||||
STDMETHOD(GetDevices) (THIS_ LPDIRECT3DRMDEVICEARRAY *) PURE;
|
||||
STDMETHOD(GetNamedObject) (THIS_ const char *, LPDIRECT3DRMOBJECT *) PURE;
|
||||
|
||||
STDMETHOD(EnumerateObjects) (THIS_ D3DRMOBJECTCALLBACK, LPVOID) PURE;
|
||||
STDMETHOD(EnumerateObjects) (THIS_ D3DRMOBJECTCALLBACK, LPVOID) PURE;
|
||||
|
||||
STDMETHOD(Load)
|
||||
STDMETHOD(Load)
|
||||
( THIS_ LPVOID, LPVOID, LPIID *, DWORD, D3DRMLOADOPTIONS,
|
||||
D3DRMLOADCALLBACK, LPVOID, D3DRMLOADTEXTURECALLBACK, LPVOID,
|
||||
LPDIRECT3DRMFRAME
|
||||
D3DRMLOADCALLBACK, LPVOID, D3DRMLOADTEXTURECALLBACK, LPVOID,
|
||||
LPDIRECT3DRMFRAME
|
||||
) PURE;
|
||||
STDMETHOD(Tick) (THIS_ D3DVALUE) PURE;
|
||||
STDMETHOD(Tick) (THIS_ D3DVALUE) PURE;
|
||||
|
||||
STDMETHOD(CreateProgressiveMesh)(THIS_ LPDIRECT3DRMPROGRESSIVEMESH *) PURE;
|
||||
};
|
||||
@ -215,78 +215,78 @@ DECLARE_INTERFACE_(IDirect3DRM3, IUnknown)
|
||||
IUNKNOWN_METHODS(PURE);
|
||||
|
||||
STDMETHOD(CreateObject)
|
||||
(THIS_ REFCLSID rclsid, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID FAR* ppv) PURE;
|
||||
STDMETHOD(CreateFrame) (THIS_ LPDIRECT3DRMFRAME3, LPDIRECT3DRMFRAME3 *) PURE;
|
||||
STDMETHOD(CreateMesh) (THIS_ LPDIRECT3DRMMESH *) PURE;
|
||||
(THIS_ REFCLSID rclsid, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID FAR* ppv) PURE;
|
||||
STDMETHOD(CreateFrame) (THIS_ LPDIRECT3DRMFRAME3, LPDIRECT3DRMFRAME3 *) PURE;
|
||||
STDMETHOD(CreateMesh) (THIS_ LPDIRECT3DRMMESH *) PURE;
|
||||
STDMETHOD(CreateMeshBuilder)(THIS_ LPDIRECT3DRMMESHBUILDER3 *) PURE;
|
||||
STDMETHOD(CreateFace) (THIS_ LPDIRECT3DRMFACE2 *) PURE;
|
||||
STDMETHOD(CreateAnimation) (THIS_ LPDIRECT3DRMANIMATION2 *) PURE;
|
||||
STDMETHOD(CreateFace) (THIS_ LPDIRECT3DRMFACE2 *) PURE;
|
||||
STDMETHOD(CreateAnimation) (THIS_ LPDIRECT3DRMANIMATION2 *) PURE;
|
||||
STDMETHOD(CreateAnimationSet)(THIS_ LPDIRECT3DRMANIMATIONSET2 *) PURE;
|
||||
STDMETHOD(CreateTexture) (THIS_ LPD3DRMIMAGE, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
STDMETHOD(CreateLight) (THIS_ D3DRMLIGHTTYPE, D3DCOLOR, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateTexture) (THIS_ LPD3DRMIMAGE, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
STDMETHOD(CreateLight) (THIS_ D3DRMLIGHTTYPE, D3DCOLOR, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateLightRGB)
|
||||
(THIS_ D3DRMLIGHTTYPE, D3DVALUE, D3DVALUE, D3DVALUE, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateMaterial) (THIS_ D3DVALUE, LPDIRECT3DRMMATERIAL2 *) PURE;
|
||||
STDMETHOD(CreateDevice) (THIS_ DWORD, DWORD, LPDIRECT3DRMDEVICE3 *) PURE;
|
||||
(THIS_ D3DRMLIGHTTYPE, D3DVALUE, D3DVALUE, D3DVALUE, LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(CreateMaterial) (THIS_ D3DVALUE, LPDIRECT3DRMMATERIAL2 *) PURE;
|
||||
STDMETHOD(CreateDevice) (THIS_ DWORD, DWORD, LPDIRECT3DRMDEVICE3 *) PURE;
|
||||
|
||||
/* Create a Windows Device using DirectDraw surfaces */
|
||||
STDMETHOD(CreateDeviceFromSurface)
|
||||
( THIS_ LPGUID lpGUID, LPDIRECTDRAW lpDD,
|
||||
LPDIRECTDRAWSURFACE lpDDSBack, DWORD dwFlags, LPDIRECT3DRMDEVICE3 *
|
||||
( THIS_ LPGUID lpGUID, LPDIRECTDRAW lpDD,
|
||||
LPDIRECTDRAWSURFACE lpDDSBack, DWORD dwFlags, LPDIRECT3DRMDEVICE3 *
|
||||
) PURE;
|
||||
|
||||
/* Create a Windows Device using D3D objects */
|
||||
STDMETHOD(CreateDeviceFromD3D)
|
||||
( THIS_ LPDIRECT3D2 lpD3D, LPDIRECT3DDEVICE2 lpD3DDev,
|
||||
LPDIRECT3DRMDEVICE3 *
|
||||
( THIS_ LPDIRECT3D2 lpD3D, LPDIRECT3DDEVICE2 lpD3DDev,
|
||||
LPDIRECT3DRMDEVICE3 *
|
||||
) PURE;
|
||||
|
||||
STDMETHOD(CreateDeviceFromClipper)
|
||||
( THIS_ LPDIRECTDRAWCLIPPER lpDDClipper, LPGUID lpGUID,
|
||||
int width, int height, LPDIRECT3DRMDEVICE3 *) PURE;
|
||||
( THIS_ LPDIRECTDRAWCLIPPER lpDDClipper, LPGUID lpGUID,
|
||||
int width, int height, LPDIRECT3DRMDEVICE3 *) PURE;
|
||||
|
||||
STDMETHOD(CreateTextureFromSurface)(THIS_ LPDIRECTDRAWSURFACE lpDDS, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
|
||||
STDMETHOD(CreateShadow)
|
||||
( THIS_ LPUNKNOWN, LPDIRECT3DRMLIGHT,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
|
||||
LPDIRECT3DRMSHADOW2 *
|
||||
( THIS_ LPUNKNOWN, LPDIRECT3DRMLIGHT,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
|
||||
LPDIRECT3DRMSHADOW2 *
|
||||
) PURE;
|
||||
STDMETHOD(CreateViewport)
|
||||
( THIS_ LPDIRECT3DRMDEVICE3, LPDIRECT3DRMFRAME3, DWORD, DWORD,
|
||||
DWORD, DWORD, LPDIRECT3DRMVIEWPORT2 *
|
||||
( THIS_ LPDIRECT3DRMDEVICE3, LPDIRECT3DRMFRAME3, DWORD, DWORD,
|
||||
DWORD, DWORD, LPDIRECT3DRMVIEWPORT2 *
|
||||
) PURE;
|
||||
STDMETHOD(CreateWrap)
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME3,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv,
|
||||
LPDIRECT3DRMWRAP *
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME3,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv,
|
||||
LPDIRECT3DRMWRAP *
|
||||
) PURE;
|
||||
STDMETHOD(CreateUserVisual) (THIS_ D3DRMUSERVISUALCALLBACK, LPVOID lPArg, LPDIRECT3DRMUSERVISUAL *) PURE;
|
||||
STDMETHOD(LoadTexture) (THIS_ const char *, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
STDMETHOD(LoadTextureFromResource) (THIS_ HMODULE hModule, LPCTSTR strName, LPCTSTR strType, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
STDMETHOD(LoadTexture) (THIS_ const char *, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
STDMETHOD(LoadTextureFromResource) (THIS_ HMODULE hModule, LPCTSTR strName, LPCTSTR strType, LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
|
||||
STDMETHOD(SetSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(AddSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(GetSearchPath) (THIS_ DWORD *size_return, LPSTR path_return) PURE;
|
||||
STDMETHOD(SetSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(AddSearchPath) (THIS_ LPCSTR) PURE;
|
||||
STDMETHOD(GetSearchPath) (THIS_ DWORD *size_return, LPSTR path_return) PURE;
|
||||
STDMETHOD(SetDefaultTextureColors)(THIS_ DWORD) PURE;
|
||||
STDMETHOD(SetDefaultTextureShades)(THIS_ DWORD) PURE;
|
||||
|
||||
STDMETHOD(GetDevices) (THIS_ LPDIRECT3DRMDEVICEARRAY *) PURE;
|
||||
STDMETHOD(GetNamedObject) (THIS_ const char *, LPDIRECT3DRMOBJECT *) PURE;
|
||||
STDMETHOD(GetDevices) (THIS_ LPDIRECT3DRMDEVICEARRAY *) PURE;
|
||||
STDMETHOD(GetNamedObject) (THIS_ const char *, LPDIRECT3DRMOBJECT *) PURE;
|
||||
|
||||
STDMETHOD(EnumerateObjects) (THIS_ D3DRMOBJECTCALLBACK, LPVOID) PURE;
|
||||
STDMETHOD(EnumerateObjects) (THIS_ D3DRMOBJECTCALLBACK, LPVOID) PURE;
|
||||
|
||||
STDMETHOD(Load)
|
||||
STDMETHOD(Load)
|
||||
( THIS_ LPVOID, LPVOID, LPIID *, DWORD, D3DRMLOADOPTIONS,
|
||||
D3DRMLOADCALLBACK, LPVOID, D3DRMLOADTEXTURE3CALLBACK, LPVOID,
|
||||
LPDIRECT3DRMFRAME3
|
||||
D3DRMLOADCALLBACK, LPVOID, D3DRMLOADTEXTURE3CALLBACK, LPVOID,
|
||||
LPDIRECT3DRMFRAME3
|
||||
) PURE;
|
||||
STDMETHOD(Tick) (THIS_ D3DVALUE) PURE;
|
||||
STDMETHOD(Tick) (THIS_ D3DVALUE) PURE;
|
||||
|
||||
STDMETHOD(CreateProgressiveMesh)(THIS_ LPDIRECT3DRMPROGRESSIVEMESH *) PURE;
|
||||
|
||||
@ -299,20 +299,20 @@ DECLARE_INTERFACE_(IDirect3DRM3, IUnknown)
|
||||
STDMETHOD(GetOptions) (THIS_ LPDWORD);
|
||||
};
|
||||
|
||||
#define D3DRM_OK DD_OK
|
||||
#define D3DRMERR_BADOBJECT MAKE_DDHRESULT(781)
|
||||
#define D3DRMERR_BADTYPE MAKE_DDHRESULT(782)
|
||||
#define D3DRMERR_BADALLOC MAKE_DDHRESULT(783)
|
||||
#define D3DRMERR_FACEUSED MAKE_DDHRESULT(784)
|
||||
#define D3DRMERR_NOTFOUND MAKE_DDHRESULT(785)
|
||||
#define D3DRMERR_NOTDONEYET MAKE_DDHRESULT(786)
|
||||
#define D3DRMERR_FILENOTFOUND MAKE_DDHRESULT(787)
|
||||
#define D3DRMERR_BADFILE MAKE_DDHRESULT(788)
|
||||
#define D3DRMERR_BADDEVICE MAKE_DDHRESULT(789)
|
||||
#define D3DRMERR_BADVALUE MAKE_DDHRESULT(790)
|
||||
#define D3DRMERR_BADMAJORVERSION MAKE_DDHRESULT(791)
|
||||
#define D3DRMERR_BADMINORVERSION MAKE_DDHRESULT(792)
|
||||
#define D3DRMERR_UNABLETOEXECUTE MAKE_DDHRESULT(793)
|
||||
#define D3DRM_OK DD_OK
|
||||
#define D3DRMERR_BADOBJECT MAKE_DDHRESULT(781)
|
||||
#define D3DRMERR_BADTYPE MAKE_DDHRESULT(782)
|
||||
#define D3DRMERR_BADALLOC MAKE_DDHRESULT(783)
|
||||
#define D3DRMERR_FACEUSED MAKE_DDHRESULT(784)
|
||||
#define D3DRMERR_NOTFOUND MAKE_DDHRESULT(785)
|
||||
#define D3DRMERR_NOTDONEYET MAKE_DDHRESULT(786)
|
||||
#define D3DRMERR_FILENOTFOUND MAKE_DDHRESULT(787)
|
||||
#define D3DRMERR_BADFILE MAKE_DDHRESULT(788)
|
||||
#define D3DRMERR_BADDEVICE MAKE_DDHRESULT(789)
|
||||
#define D3DRMERR_BADVALUE MAKE_DDHRESULT(790)
|
||||
#define D3DRMERR_BADMAJORVERSION MAKE_DDHRESULT(791)
|
||||
#define D3DRMERR_BADMINORVERSION MAKE_DDHRESULT(792)
|
||||
#define D3DRMERR_UNABLETOEXECUTE MAKE_DDHRESULT(793)
|
||||
#define D3DRMERR_LIBRARYNOTFOUND MAKE_DDHRESULT(794)
|
||||
#define D3DRMERR_INVALIDLIBRARY MAKE_DDHRESULT(795)
|
||||
#define D3DRMERR_PENDING MAKE_DDHRESULT(796)
|
||||
@ -323,13 +323,13 @@ DECLARE_INTERFACE_(IDirect3DRM3, IUnknown)
|
||||
#define D3DRMERR_LOADABORTED MAKE_DDHRESULT(801)
|
||||
#define D3DRMERR_NOINTERNET MAKE_DDHRESULT(802)
|
||||
#define D3DRMERR_BADCACHEFILE MAKE_DDHRESULT(803)
|
||||
#define D3DRMERR_BOXNOTSET MAKE_DDHRESULT(804)
|
||||
#define D3DRMERR_BOXNOTSET MAKE_DDHRESULT(804)
|
||||
#define D3DRMERR_BADPMDATA MAKE_DDHRESULT(805)
|
||||
#define D3DRMERR_CLIENTNOTREGISTERED MAKE_DDHRESULT(806)
|
||||
#define D3DRMERR_NOTCREATEDFROMDDS MAKE_DDHRESULT(807)
|
||||
#define D3DRMERR_NOTCREATEDFROMDDS MAKE_DDHRESULT(807)
|
||||
#define D3DRMERR_NOSUCHKEY MAKE_DDHRESULT(808)
|
||||
#define D3DRMERR_INCOMPATABLEKEY MAKE_DDHRESULT(809)
|
||||
#define D3DRMERR_ELEMENTINUSE MAKE_DDHRESULT(810)
|
||||
#define D3DRMERR_ELEMENTINUSE MAKE_DDHRESULT(810)
|
||||
#define D3DRMERR_TEXTUREFORMATNOTFOUND MAKE_DDHRESULT(811)
|
||||
#define D3DRMERR_NOTAGGREGATED MAKE_DDHRESULT(812)
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
*
|
||||
* Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
|
||||
*
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
@ -60,71 +60,71 @@ typedef enum _D3DRMLIGHTTYPE
|
||||
} D3DRMLIGHTTYPE, *LPD3DRMLIGHTTYPE;
|
||||
|
||||
typedef enum _D3DRMSHADEMODE {
|
||||
D3DRMSHADE_FLAT = 0,
|
||||
D3DRMSHADE_GOURAUD = 1,
|
||||
D3DRMSHADE_PHONG = 2,
|
||||
D3DRMSHADE_FLAT = 0,
|
||||
D3DRMSHADE_GOURAUD = 1,
|
||||
D3DRMSHADE_PHONG = 2,
|
||||
|
||||
D3DRMSHADE_MASK = 7,
|
||||
D3DRMSHADE_MAX = 8
|
||||
D3DRMSHADE_MASK = 7,
|
||||
D3DRMSHADE_MAX = 8
|
||||
} D3DRMSHADEMODE, *LPD3DRMSHADEMODE;
|
||||
|
||||
typedef enum _D3DRMLIGHTMODE {
|
||||
D3DRMLIGHT_OFF = 0 * D3DRMSHADE_MAX,
|
||||
D3DRMLIGHT_ON = 1 * D3DRMSHADE_MAX,
|
||||
D3DRMLIGHT_OFF = 0 * D3DRMSHADE_MAX,
|
||||
D3DRMLIGHT_ON = 1 * D3DRMSHADE_MAX,
|
||||
|
||||
D3DRMLIGHT_MASK = 7 * D3DRMSHADE_MAX,
|
||||
D3DRMLIGHT_MAX = 8 * D3DRMSHADE_MAX
|
||||
D3DRMLIGHT_MASK = 7 * D3DRMSHADE_MAX,
|
||||
D3DRMLIGHT_MAX = 8 * D3DRMSHADE_MAX
|
||||
} D3DRMLIGHTMODE, *LPD3DRMLIGHTMODE;
|
||||
|
||||
typedef enum _D3DRMFILLMODE {
|
||||
D3DRMFILL_POINTS = 0 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_WIREFRAME = 1 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_SOLID = 2 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_POINTS = 0 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_WIREFRAME = 1 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_SOLID = 2 * D3DRMLIGHT_MAX,
|
||||
|
||||
D3DRMFILL_MASK = 7 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_MAX = 8 * D3DRMLIGHT_MAX
|
||||
D3DRMFILL_MASK = 7 * D3DRMLIGHT_MAX,
|
||||
D3DRMFILL_MAX = 8 * D3DRMLIGHT_MAX
|
||||
} D3DRMFILLMODE, *LPD3DRMFILLMODE;
|
||||
|
||||
typedef DWORD D3DRMRENDERQUALITY, *LPD3DRMRENDERQUALITY;
|
||||
|
||||
#define D3DRMRENDER_WIREFRAME (D3DRMSHADE_FLAT+D3DRMLIGHT_OFF+D3DRMFILL_WIREFRAME)
|
||||
#define D3DRMRENDER_UNLITFLAT (D3DRMSHADE_FLAT+D3DRMLIGHT_OFF+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_FLAT (D3DRMSHADE_FLAT+D3DRMLIGHT_ON+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_GOURAUD (D3DRMSHADE_GOURAUD+D3DRMLIGHT_ON+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_PHONG (D3DRMSHADE_PHONG+D3DRMLIGHT_ON+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_WIREFRAME (D3DRMSHADE_FLAT+D3DRMLIGHT_OFF+D3DRMFILL_WIREFRAME)
|
||||
#define D3DRMRENDER_UNLITFLAT (D3DRMSHADE_FLAT+D3DRMLIGHT_OFF+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_FLAT (D3DRMSHADE_FLAT+D3DRMLIGHT_ON+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_GOURAUD (D3DRMSHADE_GOURAUD+D3DRMLIGHT_ON+D3DRMFILL_SOLID)
|
||||
#define D3DRMRENDER_PHONG (D3DRMSHADE_PHONG+D3DRMLIGHT_ON+D3DRMFILL_SOLID)
|
||||
|
||||
#define D3DRMRENDERMODE_BLENDEDTRANSPARENCY 1
|
||||
#define D3DRMRENDERMODE_SORTEDTRANSPARENCY 2
|
||||
#define D3DRMRENDERMODE_LIGHTINMODELSPACE 8
|
||||
#define D3DRMRENDERMODE_VIEWDEPENDENTSPECULAR 16
|
||||
#define D3DRMRENDERMODE_BLENDEDTRANSPARENCY 1
|
||||
#define D3DRMRENDERMODE_SORTEDTRANSPARENCY 2
|
||||
#define D3DRMRENDERMODE_LIGHTINMODELSPACE 8
|
||||
#define D3DRMRENDERMODE_VIEWDEPENDENTSPECULAR 16
|
||||
#define D3DRMRENDERMODE_DISABLESORTEDALPHAZWRITE 32
|
||||
|
||||
typedef enum _D3DRMTEXTUREQUALITY
|
||||
{ D3DRMTEXTURE_NEAREST, /* choose nearest texel */
|
||||
D3DRMTEXTURE_LINEAR, /* interpolate 4 texels */
|
||||
D3DRMTEXTURE_MIPNEAREST, /* nearest texel in nearest mipmap */
|
||||
D3DRMTEXTURE_MIPLINEAR, /* interpolate 2 texels from 2 mipmaps */
|
||||
D3DRMTEXTURE_LINEARMIPNEAREST, /* interpolate 4 texels in nearest mipmap */
|
||||
D3DRMTEXTURE_LINEARMIPLINEAR /* interpolate 8 texels from 2 mipmaps */
|
||||
{ D3DRMTEXTURE_NEAREST, /* choose nearest texel */
|
||||
D3DRMTEXTURE_LINEAR, /* interpolate 4 texels */
|
||||
D3DRMTEXTURE_MIPNEAREST, /* nearest texel in nearest mipmap */
|
||||
D3DRMTEXTURE_MIPLINEAR, /* interpolate 2 texels from 2 mipmaps */
|
||||
D3DRMTEXTURE_LINEARMIPNEAREST, /* interpolate 4 texels in nearest mipmap */
|
||||
D3DRMTEXTURE_LINEARMIPLINEAR /* interpolate 8 texels from 2 mipmaps */
|
||||
} D3DRMTEXTUREQUALITY, *LPD3DRMTEXTUREQUALITY;
|
||||
|
||||
/*
|
||||
* Texture flags
|
||||
*/
|
||||
#define D3DRMTEXTURE_FORCERESIDENT 0x00000001 /* texture should be kept in video memory */
|
||||
#define D3DRMTEXTURE_STATIC 0x00000002 /* texture will not change */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLEPOINT 0x00000004 /* point filtering should be used when downsampling */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLEBILINEAR 0x00000008 /* bilinear filtering should be used when downsampling */
|
||||
#define D3DRMTEXTURE_FORCERESIDENT 0x00000001 /* texture should be kept in video memory */
|
||||
#define D3DRMTEXTURE_STATIC 0x00000002 /* texture will not change */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLEPOINT 0x00000004 /* point filtering should be used when downsampling */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLEBILINEAR 0x00000008 /* bilinear filtering should be used when downsampling */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLEREDUCEDEPTH 0x00000010 /* reduce bit depth when downsampling */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLENONE 0x00000020 /* texture should never be downsampled */
|
||||
#define D3DRMTEXTURE_CHANGEDPIXELS 0x00000040 /* pixels have changed */
|
||||
#define D3DRMTEXTURE_CHANGEDPALETTE 0x00000080 /* palette has changed */
|
||||
#define D3DRMTEXTURE_INVALIDATEONLY 0x00000100 /* dirty regions are invalid */
|
||||
#define D3DRMTEXTURE_DOWNSAMPLENONE 0x00000020 /* texture should never be downsampled */
|
||||
#define D3DRMTEXTURE_CHANGEDPIXELS 0x00000040 /* pixels have changed */
|
||||
#define D3DRMTEXTURE_CHANGEDPALETTE 0x00000080 /* palette has changed */
|
||||
#define D3DRMTEXTURE_INVALIDATEONLY 0x00000100 /* dirty regions are invalid */
|
||||
|
||||
/*
|
||||
* Shadow flags
|
||||
*/
|
||||
#define D3DRMSHADOW_TRUEALPHA 0x00000001 /* shadow should render without artifacts when true alpha is on */
|
||||
#define D3DRMSHADOW_TRUEALPHA 0x00000001 /* shadow should render without artifacts when true alpha is on */
|
||||
|
||||
typedef enum _D3DRMCOMBINETYPE
|
||||
{ D3DRMCOMBINE_REPLACE,
|
||||
@ -135,48 +135,48 @@ typedef enum _D3DRMCOMBINETYPE
|
||||
typedef D3DCOLORMODEL D3DRMCOLORMODEL, *LPD3DRMCOLORMODEL;
|
||||
|
||||
typedef enum _D3DRMPALETTEFLAGS
|
||||
{ D3DRMPALETTE_FREE, /* renderer may use this entry freely */
|
||||
D3DRMPALETTE_READONLY, /* fixed but may be used by renderer */
|
||||
D3DRMPALETTE_RESERVED /* may not be used by renderer */
|
||||
{ D3DRMPALETTE_FREE, /* renderer may use this entry freely */
|
||||
D3DRMPALETTE_READONLY, /* fixed but may be used by renderer */
|
||||
D3DRMPALETTE_RESERVED /* may not be used by renderer */
|
||||
} D3DRMPALETTEFLAGS, *LPD3DRMPALETTEFLAGS;
|
||||
|
||||
typedef struct _D3DRMPALETTEENTRY
|
||||
{ unsigned char red; /* 0 .. 255 */
|
||||
unsigned char green; /* 0 .. 255 */
|
||||
unsigned char blue; /* 0 .. 255 */
|
||||
unsigned char flags; /* one of D3DRMPALETTEFLAGS */
|
||||
{ unsigned char red; /* 0 .. 255 */
|
||||
unsigned char green; /* 0 .. 255 */
|
||||
unsigned char blue; /* 0 .. 255 */
|
||||
unsigned char flags; /* one of D3DRMPALETTEFLAGS */
|
||||
} D3DRMPALETTEENTRY, *LPD3DRMPALETTEENTRY;
|
||||
|
||||
typedef struct _D3DRMIMAGE
|
||||
{ int width, height; /* width and height in pixels */
|
||||
int aspectx, aspecty; /* aspect ratio for non-square pixels */
|
||||
int depth; /* bits per pixel */
|
||||
int rgb; /* if false, pixels are indices into a
|
||||
palette otherwise, pixels encode
|
||||
RGB values. */
|
||||
int bytes_per_line; /* number of bytes of memory for a
|
||||
scanline. This must be a multiple
|
||||
of 4. */
|
||||
void* buffer1; /* memory to render into (first buffer). */
|
||||
void* buffer2; /* second rendering buffer for double
|
||||
buffering, set to NULL for single
|
||||
buffering. */
|
||||
{ int width, height; /* width and height in pixels */
|
||||
int aspectx, aspecty; /* aspect ratio for non-square pixels */
|
||||
int depth; /* bits per pixel */
|
||||
int rgb; /* if false, pixels are indices into a
|
||||
palette otherwise, pixels encode
|
||||
RGB values. */
|
||||
int bytes_per_line; /* number of bytes of memory for a
|
||||
scanline. This must be a multiple
|
||||
of 4. */
|
||||
void* buffer1; /* memory to render into (first buffer). */
|
||||
void* buffer2; /* second rendering buffer for double
|
||||
buffering, set to NULL for single
|
||||
buffering. */
|
||||
unsigned long red_mask;
|
||||
unsigned long green_mask;
|
||||
unsigned long blue_mask;
|
||||
unsigned long alpha_mask; /* if rgb is true, these are masks for
|
||||
the red, green and blue parts of a
|
||||
pixel. Otherwise, these are masks
|
||||
for the significant bits of the
|
||||
red, green and blue elements in the
|
||||
palette. For instance, most SVGA
|
||||
displays use 64 intensities of red,
|
||||
green and blue, so the masks should
|
||||
all be set to 0xfc. */
|
||||
unsigned long alpha_mask; /* if rgb is true, these are masks for
|
||||
the red, green and blue parts of a
|
||||
pixel. Otherwise, these are masks
|
||||
for the significant bits of the
|
||||
red, green and blue elements in the
|
||||
palette. For instance, most SVGA
|
||||
displays use 64 intensities of red,
|
||||
green and blue, so the masks should
|
||||
all be set to 0xfc. */
|
||||
int palette_size; /* number of entries in palette */
|
||||
D3DRMPALETTEENTRY* palette; /* description of the palette (only if
|
||||
rgb is false). Must be (1<<depth)
|
||||
elements. */
|
||||
D3DRMPALETTEENTRY* palette; /* description of the palette (only if
|
||||
rgb is false). Must be (1<<depth)
|
||||
elements. */
|
||||
} D3DRMIMAGE, *LPD3DRMIMAGE;
|
||||
|
||||
typedef enum _D3DRMWRAPTYPE
|
||||
@ -188,8 +188,8 @@ typedef enum _D3DRMWRAPTYPE
|
||||
D3DRMWRAP_BOX
|
||||
} D3DRMWRAPTYPE, *LPD3DRMWRAPTYPE;
|
||||
|
||||
#define D3DRMWIREFRAME_CULL 1 /* cull backfaces */
|
||||
#define D3DRMWIREFRAME_HIDDENLINE 2 /* lines are obscured by closer objects */
|
||||
#define D3DRMWIREFRAME_CULL 1 /* cull backfaces */
|
||||
#define D3DRMWIREFRAME_HIDDENLINE 2 /* lines are obscured by closer objects */
|
||||
|
||||
/*
|
||||
* Do not use righthanded perspective in Viewport2::SetProjection().
|
||||
@ -226,9 +226,9 @@ typedef enum _D3DRMCOLORSOURCE
|
||||
} D3DRMCOLORSOURCE, *LPD3DRMCOLORSOURCE;
|
||||
|
||||
typedef enum _D3DRMFRAMECONSTRAINT
|
||||
{ D3DRMCONSTRAIN_Z, /* use only X and Y rotations */
|
||||
D3DRMCONSTRAIN_Y, /* use only X and Z rotations */
|
||||
D3DRMCONSTRAIN_X /* use only Y and Z rotations */
|
||||
{ D3DRMCONSTRAIN_Z, /* use only X and Y rotations */
|
||||
D3DRMCONSTRAIN_Y, /* use only X and Z rotations */
|
||||
D3DRMCONSTRAIN_X /* use only Y and Z rotations */
|
||||
} D3DRMFRAMECONSTRAINT, *LPD3DRMFRAMECONSTRAINT;
|
||||
|
||||
typedef enum _D3DRMMATERIALMODE
|
||||
@ -238,32 +238,32 @@ typedef enum _D3DRMMATERIALMODE
|
||||
} D3DRMMATERIALMODE, *LPD3DRMMATERIALMODE;
|
||||
|
||||
typedef enum _D3DRMFOGMODE
|
||||
{ D3DRMFOG_LINEAR, /* linear between start and end */
|
||||
D3DRMFOG_EXPONENTIAL, /* density * exp(-distance) */
|
||||
D3DRMFOG_EXPONENTIALSQUARED /* density * exp(-distance*distance) */
|
||||
{ D3DRMFOG_LINEAR, /* linear between start and end */
|
||||
D3DRMFOG_EXPONENTIAL, /* density * exp(-distance) */
|
||||
D3DRMFOG_EXPONENTIALSQUARED /* density * exp(-distance*distance) */
|
||||
} D3DRMFOGMODE, *LPD3DRMFOGMODE;
|
||||
|
||||
typedef enum _D3DRMZBUFFERMODE {
|
||||
D3DRMZBUFFER_FROMPARENT, /* default */
|
||||
D3DRMZBUFFER_ENABLE, /* enable zbuffering */
|
||||
D3DRMZBUFFER_DISABLE /* disable zbuffering */
|
||||
D3DRMZBUFFER_FROMPARENT, /* default */
|
||||
D3DRMZBUFFER_ENABLE, /* enable zbuffering */
|
||||
D3DRMZBUFFER_DISABLE /* disable zbuffering */
|
||||
} D3DRMZBUFFERMODE, *LPD3DRMZBUFFERMODE;
|
||||
|
||||
typedef enum _D3DRMSORTMODE {
|
||||
D3DRMSORT_FROMPARENT, /* default */
|
||||
D3DRMSORT_NONE, /* don't sort child frames */
|
||||
D3DRMSORT_FRONTTOBACK, /* sort child frames front-to-back */
|
||||
D3DRMSORT_BACKTOFRONT /* sort child frames back-to-front */
|
||||
D3DRMSORT_FROMPARENT, /* default */
|
||||
D3DRMSORT_NONE, /* don't sort child frames */
|
||||
D3DRMSORT_FRONTTOBACK, /* sort child frames front-to-back */
|
||||
D3DRMSORT_BACKTOFRONT /* sort child frames back-to-front */
|
||||
} D3DRMSORTMODE, *LPD3DRMSORTMODE;
|
||||
|
||||
typedef struct _D3DRMMATERIALOVERRIDE
|
||||
{
|
||||
DWORD dwSize; /* Size of this structure */
|
||||
DWORD dwFlags; /* Indicate which fields are valid */
|
||||
D3DCOLORVALUE dcDiffuse; /* RGBA */
|
||||
D3DCOLORVALUE dcAmbient; /* RGB */
|
||||
D3DCOLORVALUE dcEmissive; /* RGB */
|
||||
D3DCOLORVALUE dcSpecular; /* RGB */
|
||||
DWORD dwSize; /* Size of this structure */
|
||||
DWORD dwFlags; /* Indicate which fields are valid */
|
||||
D3DCOLORVALUE dcDiffuse; /* RGBA */
|
||||
D3DCOLORVALUE dcAmbient; /* RGB */
|
||||
D3DCOLORVALUE dcEmissive; /* RGB */
|
||||
D3DCOLORVALUE dcSpecular; /* RGB */
|
||||
D3DVALUE dvPower;
|
||||
LPUNKNOWN lpD3DRMTex;
|
||||
} D3DRMMATERIALOVERRIDE, *LPD3DRMMATERIALOVERRIDE;
|
||||
@ -284,11 +284,11 @@ typedef struct _D3DRMMATERIALOVERRIDE
|
||||
#define D3DRMFPTF_PALETTIZED 0x00000004L
|
||||
#define D3DRMFPTF_NOTPALETTIZED 0x00000008L
|
||||
|
||||
#define D3DRMSTATECHANGE_UPDATEONLY 0x000000001L
|
||||
#define D3DRMSTATECHANGE_VOLATILE 0x000000002L
|
||||
#define D3DRMSTATECHANGE_NONVOLATILE 0x000000004L
|
||||
#define D3DRMSTATECHANGE_RENDER 0x000000020L
|
||||
#define D3DRMSTATECHANGE_LIGHT 0x000000040L
|
||||
#define D3DRMSTATECHANGE_UPDATEONLY 0x000000001L
|
||||
#define D3DRMSTATECHANGE_VOLATILE 0x000000002L
|
||||
#define D3DRMSTATECHANGE_NONVOLATILE 0x000000004L
|
||||
#define D3DRMSTATECHANGE_RENDER 0x000000020L
|
||||
#define D3DRMSTATECHANGE_LIGHT 0x000000040L
|
||||
|
||||
/*
|
||||
* Values for flags in RM3::CreateDeviceFromSurface
|
||||
@ -305,47 +305,47 @@ typedef struct _D3DRMMATERIALOVERRIDE
|
||||
/*
|
||||
* Values for flags in Frame2::AddMoveCallback.
|
||||
*/
|
||||
#define D3DRMCALLBACK_PREORDER 0
|
||||
#define D3DRMCALLBACK_POSTORDER 1
|
||||
#define D3DRMCALLBACK_PREORDER 0
|
||||
#define D3DRMCALLBACK_POSTORDER 1
|
||||
|
||||
/*
|
||||
* Values for flags in MeshBuilder2::RayPick.
|
||||
*/
|
||||
#define D3DRMRAYPICK_ONLYBOUNDINGBOXES 1
|
||||
#define D3DRMRAYPICK_IGNOREFURTHERPRIMITIVES 2
|
||||
#define D3DRMRAYPICK_INTERPOLATEUV 4
|
||||
#define D3DRMRAYPICK_INTERPOLATECOLOR 8
|
||||
#define D3DRMRAYPICK_INTERPOLATENORMAL 0x10
|
||||
#define D3DRMRAYPICK_ONLYBOUNDINGBOXES 1
|
||||
#define D3DRMRAYPICK_IGNOREFURTHERPRIMITIVES 2
|
||||
#define D3DRMRAYPICK_INTERPOLATEUV 4
|
||||
#define D3DRMRAYPICK_INTERPOLATECOLOR 8
|
||||
#define D3DRMRAYPICK_INTERPOLATENORMAL 0x10
|
||||
|
||||
/*
|
||||
* Values for flags in MeshBuilder3::AddFacesIndexed.
|
||||
*/
|
||||
#define D3DRMADDFACES_VERTICESONLY 1
|
||||
#define D3DRMADDFACES_VERTICESONLY 1
|
||||
|
||||
/*
|
||||
* Values for flags in MeshBuilder2::GenerateNormals.
|
||||
*/
|
||||
#define D3DRMGENERATENORMALS_PRECOMPACT 1
|
||||
#define D3DRMGENERATENORMALS_USECREASEANGLE 2
|
||||
#define D3DRMGENERATENORMALS_PRECOMPACT 1
|
||||
#define D3DRMGENERATENORMALS_USECREASEANGLE 2
|
||||
|
||||
/*
|
||||
* Values for MeshBuilder3::GetParentMesh
|
||||
*/
|
||||
#define D3DRMMESHBUILDER_DIRECTPARENT 1
|
||||
#define D3DRMMESHBUILDER_ROOTMESH 2
|
||||
#define D3DRMMESHBUILDER_DIRECTPARENT 1
|
||||
#define D3DRMMESHBUILDER_ROOTMESH 2
|
||||
|
||||
/*
|
||||
* Flags for MeshBuilder3::Enable
|
||||
*/
|
||||
#define D3DRMMESHBUILDER_RENDERENABLE 0x00000001L
|
||||
#define D3DRMMESHBUILDER_RENDERENABLE 0x00000001L
|
||||
#define D3DRMMESHBUILDER_PICKENABLE 0x00000002L
|
||||
|
||||
/*
|
||||
* Flags for MeshBuilder3::AddMeshBuilder
|
||||
*/
|
||||
#define D3DRMADDMESHBUILDER_DONTCOPYAPPDATA 1
|
||||
#define D3DRMADDMESHBUILDER_FLATTENSUBMESHES 2
|
||||
#define D3DRMADDMESHBUILDER_NOSUBMESHES 4
|
||||
#define D3DRMADDMESHBUILDER_DONTCOPYAPPDATA 1
|
||||
#define D3DRMADDMESHBUILDER_FLATTENSUBMESHES 2
|
||||
#define D3DRMADDMESHBUILDER_NOSUBMESHES 4
|
||||
|
||||
/*
|
||||
* Flags for Object2::GetAge when used with MeshBuilders
|
||||
@ -373,8 +373,8 @@ typedef struct _D3DRMMATERIALOVERRIDE
|
||||
#define D3DRMCLEAR_ZBUFFER 0x00000002L
|
||||
#define D3DRMCLEAR_DIRTYRECTS 0x00000004L
|
||||
#define D3DRMCLEAR_ALL (D3DRMCLEAR_TARGET | \
|
||||
D3DRMCLEAR_ZBUFFER | \
|
||||
D3DRMCLEAR_DIRTYRECTS)
|
||||
D3DRMCLEAR_ZBUFFER | \
|
||||
D3DRMCLEAR_DIRTYRECTS)
|
||||
|
||||
/*
|
||||
* Values for flags in Frame3::SetSceneFogMethod
|
||||
@ -470,9 +470,9 @@ typedef struct _D3DRMANIMATIONKEY
|
||||
#if (!defined __cplusplus) || (!defined D3D_OVERLOADS)
|
||||
union
|
||||
{
|
||||
D3DRMQUATERNION dqRotateKey;
|
||||
D3DVECTOR dvScaleKey;
|
||||
D3DVECTOR dvPositionKey;
|
||||
D3DRMQUATERNION dqRotateKey;
|
||||
D3DVECTOR dvScaleKey;
|
||||
D3DVECTOR dvPositionKey;
|
||||
};
|
||||
#else
|
||||
/*
|
||||
@ -488,7 +488,7 @@ typedef D3DRMANIMATIONKEY *LPD3DRMANIMATIONKEY;
|
||||
#if (defined __cplusplus) && (defined D3D_OVERLOADS)
|
||||
inline VOID
|
||||
D3DRMAnimationGetRotateKey(const D3DRMANIMATIONKEY& rmKey,
|
||||
D3DRMQUATERNION& rmQuat)
|
||||
D3DRMQUATERNION& rmQuat)
|
||||
{
|
||||
rmQuat.s = rmKey.dvK[0];
|
||||
rmQuat.v = D3DVECTOR(rmKey.dvK[1], rmKey.dvK[2], rmKey.dvK[3]);
|
||||
@ -496,20 +496,20 @@ D3DRMAnimationGetRotateKey(const D3DRMANIMATIONKEY& rmKey,
|
||||
|
||||
inline VOID
|
||||
D3DRMAnimationGetScaleKey(const D3DRMANIMATIONKEY& rmKey,
|
||||
D3DVECTOR& dvVec)
|
||||
D3DVECTOR& dvVec)
|
||||
{
|
||||
dvVec = D3DVECTOR(rmKey.dvK[0], rmKey.dvK[1], rmKey.dvK[2]);
|
||||
}
|
||||
|
||||
inline VOID
|
||||
D3DRMAnimationGetPositionKey(const D3DRMANIMATIONKEY& rmKey,
|
||||
D3DVECTOR& dvVec)
|
||||
D3DVECTOR& dvVec)
|
||||
{
|
||||
dvVec = D3DVECTOR(rmKey.dvK[0], rmKey.dvK[1], rmKey.dvK[2]);
|
||||
}
|
||||
inline VOID
|
||||
D3DRMAnimationSetRotateKey(D3DRMANIMATIONKEY& rmKey,
|
||||
const D3DRMQUATERNION& rmQuat)
|
||||
const D3DRMQUATERNION& rmQuat)
|
||||
{
|
||||
rmKey.dvK[0] = rmQuat.s;
|
||||
rmKey.dvK[1] = rmQuat.v.x;
|
||||
@ -519,7 +519,7 @@ D3DRMAnimationSetRotateKey(D3DRMANIMATIONKEY& rmKey,
|
||||
|
||||
inline VOID
|
||||
D3DRMAnimationSetScaleKey(D3DRMANIMATIONKEY& rmKey,
|
||||
const D3DVECTOR& dvVec)
|
||||
const D3DVECTOR& dvVec)
|
||||
{
|
||||
rmKey.dvK[0] = dvVec.x;
|
||||
rmKey.dvK[1] = dvVec.y;
|
||||
@ -528,7 +528,7 @@ D3DRMAnimationSetScaleKey(D3DRMANIMATIONKEY& rmKey,
|
||||
|
||||
inline VOID
|
||||
D3DRMAnimationSetPositionKey(D3DRMANIMATIONKEY& rmKey,
|
||||
const D3DVECTOR& dvVec)
|
||||
const D3DVECTOR& dvVec)
|
||||
{
|
||||
rmKey.dvK[0] = dvVec.x;
|
||||
rmKey.dvK[1] = dvVec.y;
|
||||
@ -547,10 +547,10 @@ static const D3DRMMAPPINGFLAG D3DRMMAP_WRAPV = 2;
|
||||
static const D3DRMMAPPINGFLAG D3DRMMAP_PERSPCORRECT = 4;
|
||||
|
||||
typedef struct _D3DRMVERTEX
|
||||
{ D3DVECTOR position;
|
||||
D3DVECTOR normal;
|
||||
D3DVALUE tu, tv;
|
||||
D3DCOLOR color;
|
||||
{ D3DVECTOR position;
|
||||
D3DVECTOR normal;
|
||||
D3DVALUE tu, tv;
|
||||
D3DCOLOR color;
|
||||
} D3DRMVERTEX, *LPD3DRMVERTEX;
|
||||
|
||||
typedef LONG D3DRMGROUPINDEX; /* group indexes begin a 0 */
|
||||
@ -559,98 +559,98 @@ static const D3DRMGROUPINDEX D3DRMGROUP_ALLGROUPS = -1;
|
||||
/*
|
||||
* Create a color from three components in the range 0-1 inclusive.
|
||||
*/
|
||||
extern D3DCOLOR D3DRMAPI D3DRMCreateColorRGB(D3DVALUE red,
|
||||
D3DVALUE green,
|
||||
D3DVALUE blue);
|
||||
extern D3DCOLOR D3DRMAPI D3DRMCreateColorRGB(D3DVALUE red,
|
||||
D3DVALUE green,
|
||||
D3DVALUE blue);
|
||||
|
||||
/*
|
||||
* Create a color from four components in the range 0-1 inclusive.
|
||||
*/
|
||||
extern D3DCOLOR D3DRMAPI D3DRMCreateColorRGBA(D3DVALUE red,
|
||||
D3DVALUE green,
|
||||
D3DVALUE blue,
|
||||
D3DVALUE alpha);
|
||||
extern D3DCOLOR D3DRMAPI D3DRMCreateColorRGBA(D3DVALUE red,
|
||||
D3DVALUE green,
|
||||
D3DVALUE blue,
|
||||
D3DVALUE alpha);
|
||||
|
||||
/*
|
||||
* Get the red component of a color.
|
||||
*/
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetRed(D3DCOLOR);
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetRed(D3DCOLOR);
|
||||
|
||||
/*
|
||||
* Get the green component of a color.
|
||||
*/
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetGreen(D3DCOLOR);
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetGreen(D3DCOLOR);
|
||||
|
||||
/*
|
||||
* Get the blue component of a color.
|
||||
*/
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetBlue(D3DCOLOR);
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetBlue(D3DCOLOR);
|
||||
|
||||
/*
|
||||
* Get the alpha component of a color.
|
||||
*/
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetAlpha(D3DCOLOR);
|
||||
extern D3DVALUE D3DRMAPI D3DRMColorGetAlpha(D3DCOLOR);
|
||||
|
||||
/*
|
||||
* Add two vectors. Returns its first argument.
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorAdd(LPD3DVECTOR d,
|
||||
LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorAdd(LPD3DVECTOR d,
|
||||
LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
|
||||
/*
|
||||
* Subtract two vectors. Returns its first argument.
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorSubtract(LPD3DVECTOR d,
|
||||
LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorSubtract(LPD3DVECTOR d,
|
||||
LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
/*
|
||||
* Reflect a ray about a given normal. Returns its first argument.
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorReflect(LPD3DVECTOR d,
|
||||
LPD3DVECTOR ray,
|
||||
LPD3DVECTOR norm);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorReflect(LPD3DVECTOR d,
|
||||
LPD3DVECTOR ray,
|
||||
LPD3DVECTOR norm);
|
||||
|
||||
/*
|
||||
* Calculate the vector cross product. Returns its first argument.
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorCrossProduct(LPD3DVECTOR d,
|
||||
LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorCrossProduct(LPD3DVECTOR d,
|
||||
LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
/*
|
||||
* Return the vector dot product.
|
||||
*/
|
||||
extern D3DVALUE D3DRMAPI D3DRMVectorDotProduct(LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
extern D3DVALUE D3DRMAPI D3DRMVectorDotProduct(LPD3DVECTOR s1,
|
||||
LPD3DVECTOR s2);
|
||||
|
||||
/*
|
||||
* Scale a vector so that its modulus is 1. Returns its argument or
|
||||
* NULL if there was an error (e.g. a zero vector was passed).
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorNormalize(LPD3DVECTOR);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorNormalize(LPD3DVECTOR);
|
||||
#define D3DRMVectorNormalise D3DRMVectorNormalize
|
||||
|
||||
/*
|
||||
* Return the length of a vector (e.g. sqrt(x*x + y*y + z*z)).
|
||||
*/
|
||||
extern D3DVALUE D3DRMAPI D3DRMVectorModulus(LPD3DVECTOR v);
|
||||
extern D3DVALUE D3DRMAPI D3DRMVectorModulus(LPD3DVECTOR v);
|
||||
|
||||
/*
|
||||
* Set the rotation part of a matrix to be a rotation of theta radians
|
||||
* around the given axis.
|
||||
*/
|
||||
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorRotate(LPD3DVECTOR r, LPD3DVECTOR v, LPD3DVECTOR axis, D3DVALUE theta);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorRotate(LPD3DVECTOR r, LPD3DVECTOR v, LPD3DVECTOR axis, D3DVALUE theta);
|
||||
|
||||
/*
|
||||
* Scale a vector uniformly in all three axes
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorScale(LPD3DVECTOR d, LPD3DVECTOR s, D3DVALUE factor);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorScale(LPD3DVECTOR d, LPD3DVECTOR s, D3DVALUE factor);
|
||||
|
||||
/*
|
||||
* Return a random unit vector
|
||||
*/
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorRandom(LPD3DVECTOR d);
|
||||
extern LPD3DVECTOR D3DRMAPI D3DRMVectorRandom(LPD3DVECTOR d);
|
||||
|
||||
/*
|
||||
* Returns a unit quaternion that represents a rotation of theta radians
|
||||
@ -658,28 +658,28 @@ extern LPD3DVECTOR D3DRMAPI D3DRMVectorRandom(LPD3DVECTOR d);
|
||||
*/
|
||||
|
||||
extern LPD3DRMQUATERNION D3DRMAPI D3DRMQuaternionFromRotation(LPD3DRMQUATERNION quat,
|
||||
LPD3DVECTOR v,
|
||||
D3DVALUE theta);
|
||||
LPD3DVECTOR v,
|
||||
D3DVALUE theta);
|
||||
|
||||
/*
|
||||
* Calculate the product of two quaternions
|
||||
*/
|
||||
extern LPD3DRMQUATERNION D3DRMAPI D3DRMQuaternionMultiply(LPD3DRMQUATERNION q,
|
||||
LPD3DRMQUATERNION a,
|
||||
LPD3DRMQUATERNION b);
|
||||
LPD3DRMQUATERNION a,
|
||||
LPD3DRMQUATERNION b);
|
||||
|
||||
/*
|
||||
* Interpolate between two quaternions
|
||||
*/
|
||||
extern LPD3DRMQUATERNION D3DRMAPI D3DRMQuaternionSlerp(LPD3DRMQUATERNION q,
|
||||
LPD3DRMQUATERNION a,
|
||||
LPD3DRMQUATERNION b,
|
||||
D3DVALUE alpha);
|
||||
LPD3DRMQUATERNION a,
|
||||
LPD3DRMQUATERNION b,
|
||||
D3DVALUE alpha);
|
||||
|
||||
/*
|
||||
* Calculate the matrix for the rotation that a unit quaternion represents
|
||||
*/
|
||||
extern void D3DRMAPI D3DRMMatrixFromQuaternion(D3DRMMATRIX4D dmMat, LPD3DRMQUATERNION lpDqQuat);
|
||||
extern void D3DRMAPI D3DRMMatrixFromQuaternion(D3DRMMATRIX4D dmMat, LPD3DRMQUATERNION lpDqQuat);
|
||||
|
||||
/*
|
||||
* Calculate the quaternion that corresponds to a rotation matrix
|
||||
|
@ -2,8 +2,8 @@
|
||||
*
|
||||
* Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
|
||||
*
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
@ -24,22 +24,22 @@ extern "C" {
|
||||
* The methods for IUnknown
|
||||
*/
|
||||
#define IUNKNOWN_METHODS(kind) \
|
||||
STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID *ppvObj) kind; \
|
||||
STDMETHOD_(ULONG, AddRef) (THIS) kind; \
|
||||
STDMETHOD_(ULONG, Release) (THIS) kind
|
||||
STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID *ppvObj) kind; \
|
||||
STDMETHOD_(ULONG, AddRef) (THIS) kind; \
|
||||
STDMETHOD_(ULONG, Release) (THIS) kind
|
||||
|
||||
/*
|
||||
* The methods for IDirect3DRMObject
|
||||
*/
|
||||
#define IDIRECT3DRMOBJECT_METHODS(kind) \
|
||||
STDMETHOD(Clone) (THIS_ LPUNKNOWN pUnkOuter, REFIID riid, LPVOID *ppvObj) kind; \
|
||||
STDMETHOD(AddDestroyCallback) (THIS_ D3DRMOBJECTCALLBACK, LPVOID argument) kind; \
|
||||
STDMETHOD(DeleteDestroyCallback) (THIS_ D3DRMOBJECTCALLBACK, LPVOID argument) kind; \
|
||||
STDMETHOD(SetAppData) (THIS_ DWORD data) kind; \
|
||||
STDMETHOD_(DWORD, GetAppData) (THIS) kind; \
|
||||
STDMETHOD(SetName) (THIS_ LPCSTR) kind; \
|
||||
STDMETHOD(GetName) (THIS_ LPDWORD lpdwSize, LPSTR lpName) kind; \
|
||||
STDMETHOD(GetClassName) (THIS_ LPDWORD lpdwSize, LPSTR lpName) kind
|
||||
STDMETHOD(Clone) (THIS_ LPUNKNOWN pUnkOuter, REFIID riid, LPVOID *ppvObj) kind; \
|
||||
STDMETHOD(AddDestroyCallback) (THIS_ D3DRMOBJECTCALLBACK, LPVOID argument) kind; \
|
||||
STDMETHOD(DeleteDestroyCallback) (THIS_ D3DRMOBJECTCALLBACK, LPVOID argument) kind; \
|
||||
STDMETHOD(SetAppData) (THIS_ DWORD data) kind; \
|
||||
STDMETHOD_(DWORD, GetAppData) (THIS) kind; \
|
||||
STDMETHOD(SetName) (THIS_ LPCSTR) kind; \
|
||||
STDMETHOD(GetName) (THIS_ LPDWORD lpdwSize, LPSTR lpName) kind; \
|
||||
STDMETHOD(GetClassName) (THIS_ LPDWORD lpdwSize, LPSTR lpName) kind
|
||||
|
||||
|
||||
#define WIN_TYPES(itype, ptype) \
|
||||
@ -94,20 +94,20 @@ WIN_TYPES(IDirect3DRMClippedVisual, DIRECT3DRMCLIPPEDVISUAL);
|
||||
/*
|
||||
* Direct3DRM Object classes
|
||||
*/
|
||||
DEFINE_GUID(CLSID_CDirect3DRMDevice, 0x4fa3568e, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMViewport, 0x4fa3568f, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFrame, 0x4fa35690, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMesh, 0x4fa35691, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMDevice, 0x4fa3568e, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMViewport, 0x4fa3568f, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFrame, 0x4fa35690, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMesh, 0x4fa35691, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMeshBuilder, 0x4fa35692, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFace, 0x4fa35693, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMLight, 0x4fa35694, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMTexture, 0x4fa35695, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMWrap, 0x4fa35696, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMaterial, 0x4fa35697, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMAnimation, 0x4fa35698, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFace, 0x4fa35693, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMLight, 0x4fa35694, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMTexture, 0x4fa35695, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMWrap, 0x4fa35696, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMMaterial, 0x4fa35697, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMAnimation, 0x4fa35698, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMAnimationSet, 0x4fa35699, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMUserVisual, 0x4fa3569a, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMShadow, 0x4fa3569b, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMShadow, 0x4fa3569b, 0x623f, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMViewportInterpolator,
|
||||
0xde9eaa1, 0x3b84, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(CLSID_CDirect3DRMFrameInterpolator,
|
||||
@ -127,47 +127,47 @@ DEFINE_GUID(CLSID_CDirect3DRMClippedVisual, 0x5434e72d, 0x6d66, 0x11d1, 0xbb,
|
||||
/*
|
||||
* Direct3DRM Object interfaces
|
||||
*/
|
||||
DEFINE_GUID(IID_IDirect3DRMObject, 0xeb16cb00, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMObject, 0xeb16cb00, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMObject2, 0x4516ec7c, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice, 0xe9e19280, 0x6e05, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice2, 0x4516ec78, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice, 0xe9e19280, 0x6e05, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice2, 0x4516ec78, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDevice3, 0x549f498b, 0xbfeb, 0x11d1, 0x8e, 0xd8, 0x0, 0xa0, 0xc9, 0x67, 0xa4, 0x82);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewport, 0xeb16cb02, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewport, 0xeb16cb02, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewport2, 0x4a1b1be6, 0xbfed, 0x11d1, 0x8e, 0xd8, 0x0, 0xa0, 0xc9, 0x67, 0xa4, 0x82);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame, 0xeb16cb03, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame2, 0xc3dfbd60, 0x3988, 0x11d0, 0x9e, 0xc2, 0x0, 0x0, 0xc0, 0x29, 0x1a, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame, 0xeb16cb03, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame2, 0xc3dfbd60, 0x3988, 0x11d0, 0x9e, 0xc2, 0x0, 0x0, 0xc0, 0x29, 0x1a, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrame3, 0xff6b7f70, 0xa40e, 0x11d1, 0x91, 0xf9, 0x0, 0x0, 0xf8, 0x75, 0x8e, 0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMVisual, 0xeb16cb04, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMesh, 0xa3a80d01, 0x6e12, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder, 0xa3a80d02, 0x6e12, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMVisual, 0xeb16cb04, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMesh, 0xa3a80d01, 0x6e12, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder, 0xa3a80d02, 0x6e12, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder2, 0x4516ec77, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMMeshBuilder3, 0x4516ec82, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMFace, 0xeb16cb07, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFace, 0xeb16cb07, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFace2, 0x4516ec81, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMLight, 0xeb16cb08, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture, 0xeb16cb09, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMLight, 0xeb16cb08, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture, 0xeb16cb09, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture2, 0x120f30c0, 0x1629, 0x11d0, 0x94, 0x1c, 0x0, 0x80, 0xc8, 0xc, 0xfa, 0x7b);
|
||||
DEFINE_GUID(IID_IDirect3DRMTexture3, 0xff6b7f73, 0xa40e, 0x11d1, 0x91, 0xf9, 0x0, 0x0, 0xf8, 0x75, 0x8e, 0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMWrap, 0xeb16cb0a, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMaterial, 0xeb16cb0b, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMWrap, 0xeb16cb0a, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMaterial, 0xeb16cb0b, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMMaterial2, 0xff6b7f75, 0xa40e, 0x11d1, 0x91, 0xf9, 0x0, 0x0, 0xf8, 0x75, 0x8e, 0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimation, 0xeb16cb0d, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimation, 0xeb16cb0d, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimation2, 0xff6b7f77, 0xa40e, 0x11d1, 0x91, 0xf9, 0x0, 0x0, 0xf8, 0x75, 0x8e, 0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimationSet, 0xeb16cb0e, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimationSet2, 0xff6b7f79, 0xa40e, 0x11d1, 0x91, 0xf9, 0x0, 0x0, 0xf8, 0x75, 0x8e, 0x66);
|
||||
DEFINE_GUID(IID_IDirect3DRMObjectArray, 0x242f6bc2, 0x3849, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDeviceArray, 0xeb16cb10, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMObjectArray, 0x242f6bc2, 0x3849, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMDeviceArray, 0xeb16cb10, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMViewportArray, 0xeb16cb11, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrameArray, 0xeb16cb12, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMVisualArray, 0xeb16cb13, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMLightArray, 0xeb16cb14, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMPickedArray, 0xeb16cb16, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFaceArray, 0xeb16cb17, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFrameArray, 0xeb16cb12, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMVisualArray, 0xeb16cb13, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMLightArray, 0xeb16cb14, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMPickedArray, 0xeb16cb16, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMFaceArray, 0xeb16cb17, 0xd271, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMAnimationArray,
|
||||
0xd5f1cae0, 0x4bd7, 0x11d1, 0xb9, 0x74, 0x0, 0x60, 0x8, 0x3e, 0x45, 0xf3);
|
||||
DEFINE_GUID(IID_IDirect3DRMUserVisual, 0x59163de0, 0x6d43, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMShadow, 0xaf359780, 0x6ba3, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMShadow2, 0x86b44e25, 0x9c82, 0x11d1, 0xbb, 0xb, 0x0, 0xa0, 0xc9, 0x81, 0xa0, 0xa6);
|
||||
DEFINE_GUID(IID_IDirect3DRMUserVisual, 0x59163de0, 0x6d43, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMShadow, 0xaf359780, 0x6ba3, 0x11cf, 0xac, 0x4a, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMShadow2, 0x86b44e25, 0x9c82, 0x11d1, 0xbb, 0xb, 0x0, 0xa0, 0xc9, 0x81, 0xa0, 0xa6);
|
||||
DEFINE_GUID(IID_IDirect3DRMInterpolator, 0x242f6bc1, 0x3849, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMProgressiveMesh, 0x4516ec79, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
DEFINE_GUID(IID_IDirect3DRMPicked2Array, 0x4516ec7b, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x0, 0x0, 0xc0, 0x78, 0x1b, 0xc3);
|
||||
@ -179,7 +179,7 @@ typedef void (__cdecl *D3DRMFRAME3MOVECALLBACK)(LPDIRECT3DRMFRAME3 obj, LPVOID a
|
||||
typedef void (__cdecl *D3DRMUPDATECALLBACK)(LPDIRECT3DRMDEVICE obj, LPVOID arg, int, LPD3DRECT);
|
||||
typedef void (__cdecl *D3DRMDEVICE3UPDATECALLBACK)(LPDIRECT3DRMDEVICE3 obj, LPVOID arg, int, LPD3DRECT);
|
||||
typedef int (__cdecl *D3DRMUSERVISUALCALLBACK)
|
||||
( LPDIRECT3DRMUSERVISUAL obj, LPVOID arg, D3DRMUSERVISUALREASON reason,
|
||||
( LPDIRECT3DRMUSERVISUAL obj, LPVOID arg, D3DRMUSERVISUALREASON reason,
|
||||
LPDIRECT3DRMDEVICE dev, LPDIRECT3DRMVIEWPORT view
|
||||
);
|
||||
typedef HRESULT (__cdecl *D3DRMLOADTEXTURECALLBACK)
|
||||
@ -199,21 +199,21 @@ typedef HRESULT (__cdecl *D3DRMVALIDATIONCALLBACK)
|
||||
|
||||
typedef struct _D3DRMPICKDESC
|
||||
{
|
||||
ULONG ulFaceIdx;
|
||||
LONG lGroupIdx;
|
||||
D3DVECTOR vPosition;
|
||||
ULONG ulFaceIdx;
|
||||
LONG lGroupIdx;
|
||||
D3DVECTOR vPosition;
|
||||
|
||||
} D3DRMPICKDESC, *LPD3DRMPICKDESC;
|
||||
|
||||
typedef struct _D3DRMPICKDESC2
|
||||
{
|
||||
ULONG ulFaceIdx;
|
||||
LONG lGroupIdx;
|
||||
D3DVECTOR dvPosition;
|
||||
D3DVALUE tu;
|
||||
D3DVALUE tv;
|
||||
D3DVECTOR dvNormal;
|
||||
D3DCOLOR dcColor;
|
||||
ULONG ulFaceIdx;
|
||||
LONG lGroupIdx;
|
||||
D3DVECTOR dvPosition;
|
||||
D3DVALUE tu;
|
||||
D3DVALUE tv;
|
||||
D3DVECTOR dvNormal;
|
||||
D3DCOLOR dcColor;
|
||||
|
||||
} D3DRMPICKDESC2, *LPD3DRMPICKDESC2;
|
||||
|
||||
@ -419,8 +419,8 @@ DECLARE_INTERFACE_(IDirect3DRMViewport, IDirect3DRMObject)
|
||||
* IDirect3DRMViewport methods
|
||||
*/
|
||||
STDMETHOD(Init)
|
||||
( THIS_ LPDIRECT3DRMDEVICE dev, LPDIRECT3DRMFRAME camera,
|
||||
DWORD xpos, DWORD ypos, DWORD width, DWORD height
|
||||
( THIS_ LPDIRECT3DRMDEVICE dev, LPDIRECT3DRMFRAME camera,
|
||||
DWORD xpos, DWORD ypos, DWORD width, DWORD height
|
||||
) PURE;
|
||||
STDMETHOD(Clear)(THIS) PURE;
|
||||
STDMETHOD(Render)(THIS_ LPDIRECT3DRMFRAME) PURE;
|
||||
@ -465,8 +465,8 @@ DECLARE_INTERFACE_(IDirect3DRMViewport2, IDirect3DRMObject)
|
||||
* IDirect3DRMViewport2 methods
|
||||
*/
|
||||
STDMETHOD(Init)
|
||||
( THIS_ LPDIRECT3DRMDEVICE3 dev, LPDIRECT3DRMFRAME3 camera,
|
||||
DWORD xpos, DWORD ypos, DWORD width, DWORD height
|
||||
( THIS_ LPDIRECT3DRMDEVICE3 dev, LPDIRECT3DRMFRAME3 camera,
|
||||
DWORD xpos, DWORD ypos, DWORD width, DWORD height
|
||||
) PURE;
|
||||
STDMETHOD(Clear)(THIS_ DWORD dwFlags) PURE;
|
||||
STDMETHOD(Render)(THIS_ LPDIRECT3DRMFRAME3) PURE;
|
||||
@ -499,11 +499,11 @@ DECLARE_INTERFACE_(IDirect3DRMViewport2, IDirect3DRMObject)
|
||||
STDMETHOD_(D3DRMPROJECTIONTYPE, GetProjection)(THIS) PURE;
|
||||
STDMETHOD(GetDirect3DViewport)(THIS_ LPDIRECT3DVIEWPORT *) PURE;
|
||||
STDMETHOD(TransformVectors)(THIS_ DWORD dwNumVectors,
|
||||
LPD3DRMVECTOR4D lpDstVectors,
|
||||
LPD3DVECTOR lpSrcVectors) PURE;
|
||||
LPD3DRMVECTOR4D lpDstVectors,
|
||||
LPD3DVECTOR lpSrcVectors) PURE;
|
||||
STDMETHOD(InverseTransformVectors)(THIS_ DWORD dwNumVectors,
|
||||
LPD3DVECTOR lpDstVectors,
|
||||
LPD3DRMVECTOR4D lpSrcVectors) PURE;
|
||||
LPD3DVECTOR lpDstVectors,
|
||||
LPD3DRMVECTOR4D lpSrcVectors) PURE;
|
||||
};
|
||||
|
||||
#undef INTERFACE
|
||||
@ -567,9 +567,9 @@ DECLARE_INTERFACE_(IDirect3DRMFrame, IDirect3DRMVisual)
|
||||
STDMETHOD_(D3DRMZBUFFERMODE, GetZbufferMode)(THIS) PURE;
|
||||
STDMETHOD(SetMaterialMode)(THIS_ D3DRMMATERIALMODE) PURE;
|
||||
STDMETHOD(SetOrientation)
|
||||
( THIS_ LPDIRECT3DRMFRAME reference,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz
|
||||
( THIS_ LPDIRECT3DRMFRAME reference,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz
|
||||
) PURE;
|
||||
STDMETHOD(SetPosition)(THIS_ LPDIRECT3DRMFRAME reference, D3DVALUE x, D3DVALUE y, D3DVALUE z) PURE;
|
||||
STDMETHOD(SetRotation)(THIS_ LPDIRECT3DRMFRAME reference, D3DVALUE x, D3DVALUE y, D3DVALUE z, D3DVALUE theta) PURE;
|
||||
@ -642,9 +642,9 @@ DECLARE_INTERFACE_(IDirect3DRMFrame2, IDirect3DRMFrame)
|
||||
STDMETHOD_(D3DRMZBUFFERMODE, GetZbufferMode)(THIS) PURE;
|
||||
STDMETHOD(SetMaterialMode)(THIS_ D3DRMMATERIALMODE) PURE;
|
||||
STDMETHOD(SetOrientation)
|
||||
( THIS_ LPDIRECT3DRMFRAME reference,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz
|
||||
( THIS_ LPDIRECT3DRMFRAME reference,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz
|
||||
) PURE;
|
||||
STDMETHOD(SetPosition)(THIS_ LPDIRECT3DRMFRAME reference, D3DVALUE x, D3DVALUE y, D3DVALUE z) PURE;
|
||||
STDMETHOD(SetRotation)(THIS_ LPDIRECT3DRMFRAME reference, D3DVALUE x, D3DVALUE y, D3DVALUE z, D3DVALUE theta) PURE;
|
||||
@ -669,14 +669,14 @@ DECLARE_INTERFACE_(IDirect3DRMFrame2, IDirect3DRMFrame)
|
||||
STDMETHOD(SetBox)(THIS_ LPD3DRMBOX) PURE;
|
||||
STDMETHOD(SetBoxEnable)(THIS_ BOOL) PURE;
|
||||
STDMETHOD(SetAxes)(THIS_ D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz);
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz);
|
||||
STDMETHOD(SetInheritAxes)(THIS_ BOOL inherit_from_parent);
|
||||
STDMETHOD(SetMaterial)(THIS_ LPDIRECT3DRMMATERIAL) PURE;
|
||||
STDMETHOD(SetQuaternion)(THIS_ LPDIRECT3DRMFRAME reference, D3DRMQUATERNION *q) PURE;
|
||||
|
||||
STDMETHOD(RayPick)(THIS_ LPDIRECT3DRMFRAME reference, LPD3DRMRAY ray, DWORD dwFlags, LPDIRECT3DRMPICKED2ARRAY *return_visuals) PURE;
|
||||
STDMETHOD(Save)(THIS_ LPCSTR filename, D3DRMXOFFORMAT d3dFormat,
|
||||
D3DRMSAVEOPTIONS d3dSaveFlags);
|
||||
D3DRMSAVEOPTIONS d3dSaveFlags);
|
||||
};
|
||||
|
||||
#undef INTERFACE
|
||||
@ -709,7 +709,7 @@ DECLARE_INTERFACE_(IDirect3DRMFrame3, IDirect3DRMVisual)
|
||||
STDMETHOD_(D3DRMSORTMODE, GetSortMode)(THIS) PURE;
|
||||
STDMETHOD(GetTexture)(THIS_ LPDIRECT3DRMTEXTURE3 *) PURE;
|
||||
STDMETHOD(GetTransform)(THIS_ LPDIRECT3DRMFRAME3 reference,
|
||||
D3DRMMATRIX4D rmMatrix) PURE;
|
||||
D3DRMMATRIX4D rmMatrix) PURE;
|
||||
STDMETHOD(GetVelocity)(THIS_ LPDIRECT3DRMFRAME3 reference, LPD3DVECTOR return_velocity, BOOL with_rotation) PURE;
|
||||
STDMETHOD(GetOrientation)(THIS_ LPDIRECT3DRMFRAME3 reference, LPD3DVECTOR dir, LPD3DVECTOR up) PURE;
|
||||
STDMETHOD(GetVisuals)(THIS_ LPDWORD lpdwCount, LPUNKNOWN *) PURE;
|
||||
@ -740,9 +740,9 @@ DECLARE_INTERFACE_(IDirect3DRMFrame3, IDirect3DRMVisual)
|
||||
STDMETHOD_(D3DRMZBUFFERMODE, GetZbufferMode)(THIS) PURE;
|
||||
STDMETHOD(SetMaterialMode)(THIS_ D3DRMMATERIALMODE) PURE;
|
||||
STDMETHOD(SetOrientation)
|
||||
( THIS_ LPDIRECT3DRMFRAME3 reference,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz
|
||||
( THIS_ LPDIRECT3DRMFRAME3 reference,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz
|
||||
) PURE;
|
||||
STDMETHOD(SetPosition)(THIS_ LPDIRECT3DRMFRAME3 reference, D3DVALUE x, D3DVALUE y, D3DVALUE z) PURE;
|
||||
STDMETHOD(SetRotation)(THIS_ LPDIRECT3DRMFRAME3 reference, D3DVALUE x, D3DVALUE y, D3DVALUE z, D3DVALUE theta) PURE;
|
||||
@ -761,22 +761,22 @@ DECLARE_INTERFACE_(IDirect3DRMFrame3, IDirect3DRMVisual)
|
||||
STDMETHOD(SetBox)(THIS_ LPD3DRMBOX) PURE;
|
||||
STDMETHOD(SetBoxEnable)(THIS_ BOOL) PURE;
|
||||
STDMETHOD(SetAxes)(THIS_ D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz);
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz);
|
||||
STDMETHOD(SetInheritAxes)(THIS_ BOOL inherit_from_parent);
|
||||
STDMETHOD(SetMaterial)(THIS_ LPDIRECT3DRMMATERIAL2) PURE;
|
||||
STDMETHOD(SetQuaternion)(THIS_ LPDIRECT3DRMFRAME3 reference, D3DRMQUATERNION *q) PURE;
|
||||
|
||||
STDMETHOD(RayPick)(THIS_ LPDIRECT3DRMFRAME3 reference, LPD3DRMRAY ray, DWORD dwFlags, LPDIRECT3DRMPICKED2ARRAY *return_visuals) PURE;
|
||||
STDMETHOD(Save)(THIS_ LPCSTR filename, D3DRMXOFFORMAT d3dFormat,
|
||||
D3DRMSAVEOPTIONS d3dSaveFlags);
|
||||
D3DRMSAVEOPTIONS d3dSaveFlags);
|
||||
STDMETHOD(TransformVectors)(THIS_ LPDIRECT3DRMFRAME3 reference,
|
||||
DWORD dwNumVectors,
|
||||
LPD3DVECTOR lpDstVectors,
|
||||
LPD3DVECTOR lpSrcVectors) PURE;
|
||||
DWORD dwNumVectors,
|
||||
LPD3DVECTOR lpDstVectors,
|
||||
LPD3DVECTOR lpSrcVectors) PURE;
|
||||
STDMETHOD(InverseTransformVectors)(THIS_ LPDIRECT3DRMFRAME3 reference,
|
||||
DWORD dwNumVectors,
|
||||
LPD3DVECTOR lpDstVectors,
|
||||
LPD3DVECTOR lpSrcVectors) PURE;
|
||||
DWORD dwNumVectors,
|
||||
LPD3DVECTOR lpDstVectors,
|
||||
LPD3DVECTOR lpSrcVectors) PURE;
|
||||
STDMETHOD(SetTraversalOptions)(THIS_ DWORD dwFlags) PURE;
|
||||
STDMETHOD(GetTraversalOptions)(THIS_ LPDWORD lpdwFlags) PURE;
|
||||
STDMETHOD(SetSceneFogMethod)(THIS_ DWORD dwFlags) PURE;
|
||||
@ -830,8 +830,8 @@ DECLARE_INTERFACE_(IDirect3DRMProgressiveMesh, IDirect3DRMVisual)
|
||||
* IDirect3DRMProgressiveMesh methods
|
||||
*/
|
||||
STDMETHOD(Load) (THIS_ LPVOID lpObjLocation, LPVOID lpObjId,
|
||||
D3DRMLOADOPTIONS dloLoadflags, D3DRMLOADTEXTURECALLBACK lpCallback,
|
||||
LPVOID lpArg) PURE;
|
||||
D3DRMLOADOPTIONS dloLoadflags, D3DRMLOADTEXTURECALLBACK lpCallback,
|
||||
LPVOID lpArg) PURE;
|
||||
STDMETHOD(GetLoadStatus) (THIS_ LPD3DRMPMESHLOADSTATUS lpStatus) PURE;
|
||||
STDMETHOD(SetMinRenderDetail) (THIS_ D3DVALUE d3dVal) PURE;
|
||||
STDMETHOD(Abort) (THIS_ DWORD dwFlags) PURE;
|
||||
@ -865,9 +865,9 @@ DECLARE_INTERFACE_(IDirect3DRMShadow, IDirect3DRMVisual)
|
||||
* IDirect3DRMShadow methods
|
||||
*/
|
||||
STDMETHOD(Init)
|
||||
( THIS_ LPDIRECT3DRMVISUAL visual, LPDIRECT3DRMLIGHT light,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz
|
||||
( THIS_ LPDIRECT3DRMVISUAL visual, LPDIRECT3DRMLIGHT light,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz
|
||||
) PURE;
|
||||
};
|
||||
|
||||
@ -883,9 +883,9 @@ DECLARE_INTERFACE_(IDirect3DRMShadow2, IDirect3DRMVisual)
|
||||
* IDirect3DRMShadow methods
|
||||
*/
|
||||
STDMETHOD(Init)
|
||||
( THIS_ LPUNKNOWN pUNK, LPDIRECT3DRMLIGHT light,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz
|
||||
( THIS_ LPUNKNOWN pUNK, LPDIRECT3DRMLIGHT light,
|
||||
D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz
|
||||
) PURE;
|
||||
|
||||
/*
|
||||
@ -896,9 +896,9 @@ DECLARE_INTERFACE_(IDirect3DRMShadow2, IDirect3DRMVisual)
|
||||
STDMETHOD(GetLight)(THIS_ LPDIRECT3DRMLIGHT *) PURE;
|
||||
STDMETHOD(SetLight)(THIS_ LPDIRECT3DRMLIGHT, DWORD) PURE;
|
||||
STDMETHOD(GetPlane)(THIS_ LPD3DVALUE px, LPD3DVALUE py, LPD3DVALUE pz,
|
||||
LPD3DVALUE nx, LPD3DVALUE ny, LPD3DVALUE nz) PURE;
|
||||
LPD3DVALUE nx, LPD3DVALUE ny, LPD3DVALUE nz) PURE;
|
||||
STDMETHOD(SetPlane)(THIS_ D3DVALUE px, D3DVALUE py, D3DVALUE pz,
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz, DWORD) PURE;
|
||||
D3DVALUE nx, D3DVALUE ny, D3DVALUE nz, DWORD) PURE;
|
||||
STDMETHOD(GetOptions)(THIS_ LPDWORD) PURE;
|
||||
STDMETHOD(SetOptions)(THIS_ DWORD) PURE;
|
||||
};
|
||||
@ -996,8 +996,8 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder, IDirect3DRMVisual)
|
||||
STDMETHOD(AddFrame)(THIS_ LPDIRECT3DRMFRAME) PURE;
|
||||
STDMETHOD(AddFace)(THIS_ LPDIRECT3DRMFACE) PURE;
|
||||
STDMETHOD(AddFaces)
|
||||
( THIS_ DWORD vcount, D3DVECTOR *vertices, DWORD ncount, D3DVECTOR *normals,
|
||||
DWORD *data, LPDIRECT3DRMFACEARRAY*
|
||||
( THIS_ DWORD vcount, D3DVECTOR *vertices, DWORD ncount, D3DVECTOR *normals,
|
||||
DWORD *data, LPDIRECT3DRMFACEARRAY*
|
||||
) PURE;
|
||||
STDMETHOD(ReserveSpace)(THIS_ DWORD vertex_Count, DWORD normal_count, DWORD face_count) PURE;
|
||||
STDMETHOD(SetColorRGB)(THIS_ D3DVALUE red, D3DVALUE green, D3DVALUE blue) PURE;
|
||||
@ -1015,7 +1015,7 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder, IDirect3DRMVisual)
|
||||
|
||||
STDMETHOD(GetFaces)(THIS_ LPDIRECT3DRMFACEARRAY*) PURE;
|
||||
STDMETHOD(GetVertices)
|
||||
( THIS_ DWORD *vcount, D3DVECTOR *vertices, DWORD *ncount, D3DVECTOR *normals, DWORD *face_data_size, DWORD *face_data
|
||||
( THIS_ DWORD *vcount, D3DVECTOR *vertices, DWORD *ncount, D3DVECTOR *normals, DWORD *face_data_size, DWORD *face_data
|
||||
) PURE;
|
||||
STDMETHOD(GetTextureCoordinates)(THIS_ DWORD index, D3DVALUE *u, D3DVALUE *v) PURE;
|
||||
|
||||
@ -1056,8 +1056,8 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder2, IDirect3DRMMeshBuilder)
|
||||
STDMETHOD(AddFrame)(THIS_ LPDIRECT3DRMFRAME) PURE;
|
||||
STDMETHOD(AddFace)(THIS_ LPDIRECT3DRMFACE) PURE;
|
||||
STDMETHOD(AddFaces)
|
||||
( THIS_ DWORD vcount, D3DVECTOR *vertices, DWORD ncount, D3DVECTOR *normals,
|
||||
DWORD *data, LPDIRECT3DRMFACEARRAY*
|
||||
( THIS_ DWORD vcount, D3DVECTOR *vertices, DWORD ncount, D3DVECTOR *normals,
|
||||
DWORD *data, LPDIRECT3DRMFACEARRAY*
|
||||
) PURE;
|
||||
STDMETHOD(ReserveSpace)(THIS_ DWORD vertex_Count, DWORD normal_count, DWORD face_count) PURE;
|
||||
STDMETHOD(SetColorRGB)(THIS_ D3DVALUE red, D3DVALUE green, D3DVALUE blue) PURE;
|
||||
@ -1075,7 +1075,7 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder2, IDirect3DRMMeshBuilder)
|
||||
|
||||
STDMETHOD(GetFaces)(THIS_ LPDIRECT3DRMFACEARRAY*) PURE;
|
||||
STDMETHOD(GetVertices)
|
||||
( THIS_ DWORD *vcount, D3DVECTOR *vertices, DWORD *ncount, D3DVECTOR *normals, DWORD *face_data_size, DWORD *face_data
|
||||
( THIS_ DWORD *vcount, D3DVECTOR *vertices, DWORD *ncount, D3DVECTOR *normals, DWORD *face_data_size, DWORD *face_data
|
||||
) PURE;
|
||||
STDMETHOD(GetTextureCoordinates)(THIS_ DWORD index, D3DVALUE *u, D3DVALUE *v) PURE;
|
||||
|
||||
@ -1122,8 +1122,8 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder3, IDirect3DRMVisual)
|
||||
STDMETHOD(AddFrame)(THIS_ LPDIRECT3DRMFRAME3) PURE;
|
||||
STDMETHOD(AddFace)(THIS_ LPDIRECT3DRMFACE2) PURE;
|
||||
STDMETHOD(AddFaces)
|
||||
( THIS_ DWORD vcount, D3DVECTOR *vertices, DWORD ncount, D3DVECTOR *normals,
|
||||
DWORD *data, LPDIRECT3DRMFACEARRAY*
|
||||
( THIS_ DWORD vcount, D3DVECTOR *vertices, DWORD ncount, D3DVECTOR *normals,
|
||||
DWORD *data, LPDIRECT3DRMFACEARRAY*
|
||||
) PURE;
|
||||
STDMETHOD(ReserveSpace)(THIS_ DWORD vertex_Count, DWORD normal_count, DWORD face_count) PURE;
|
||||
STDMETHOD(SetColorRGB)(THIS_ D3DVALUE red, D3DVALUE green, D3DVALUE blue) PURE;
|
||||
@ -1140,7 +1140,7 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder3, IDirect3DRMVisual)
|
||||
STDMETHOD(SetVertexColorRGB)(THIS_ DWORD index, D3DVALUE red, D3DVALUE green, D3DVALUE blue) PURE;
|
||||
STDMETHOD(GetFaces)(THIS_ LPDIRECT3DRMFACEARRAY*) PURE;
|
||||
STDMETHOD(GetGeometry)
|
||||
( THIS_ DWORD *vcount, D3DVECTOR *vertices, DWORD *ncount, D3DVECTOR *normals, DWORD *face_data_size, DWORD *face_data
|
||||
( THIS_ DWORD *vcount, D3DVECTOR *vertices, DWORD *ncount, D3DVECTOR *normals, DWORD *face_data_size, DWORD *face_data
|
||||
) PURE;
|
||||
STDMETHOD(GetTextureCoordinates)(THIS_ DWORD index, D3DVALUE *u, D3DVALUE *v) PURE;
|
||||
STDMETHOD_(int, AddVertex)(THIS_ D3DVALUE x, D3DVALUE y, D3DVALUE z) PURE;
|
||||
@ -1168,7 +1168,7 @@ DECLARE_INTERFACE_(IDirect3DRMMeshBuilder3, IDirect3DRMVisual)
|
||||
STDMETHOD(Enable)(THIS_ DWORD) PURE;
|
||||
STDMETHOD(GetEnable)(THIS_ DWORD *) PURE;
|
||||
STDMETHOD(AddTriangles)(THIS_ DWORD dwFlags, DWORD dwFormat,
|
||||
DWORD dwVertexCount, LPVOID lpvData) PURE;
|
||||
DWORD dwVertexCount, LPVOID lpvData) PURE;
|
||||
STDMETHOD(SetVertices)(THIS_ DWORD dwIndexFirst, DWORD dwCount, LPD3DVECTOR) PURE;
|
||||
STDMETHOD(GetVertices)(THIS_ DWORD dwIndexFirst, LPDWORD lpdwCount, LPD3DVECTOR) PURE;
|
||||
STDMETHOD(SetNormals)(THIS_ DWORD dwIndexFirst, DWORD dwCount, LPD3DVECTOR) PURE;
|
||||
@ -1342,12 +1342,12 @@ DECLARE_INTERFACE_(IDirect3DRMWrap, IDirect3DRMObject)
|
||||
* IDirect3DRMWrap methods
|
||||
*/
|
||||
STDMETHOD(Init)
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME ref,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv
|
||||
( THIS_ D3DRMWRAPTYPE, LPDIRECT3DRMFRAME ref,
|
||||
D3DVALUE ox, D3DVALUE oy, D3DVALUE oz,
|
||||
D3DVALUE dx, D3DVALUE dy, D3DVALUE dz,
|
||||
D3DVALUE ux, D3DVALUE uy, D3DVALUE uz,
|
||||
D3DVALUE ou, D3DVALUE ov,
|
||||
D3DVALUE su, D3DVALUE sv
|
||||
) PURE;
|
||||
STDMETHOD(Apply)(THIS_ LPDIRECT3DRMOBJECT) PURE;
|
||||
STDMETHOD(ApplyRelative)(THIS_ LPDIRECT3DRMFRAME frame, LPDIRECT3DRMOBJECT) PURE;
|
||||
@ -1443,8 +1443,8 @@ DECLARE_INTERFACE_(IDirect3DRMAnimation2, IDirect3DRMObject)
|
||||
STDMETHOD(AddKey)(THIS_ LPD3DRMANIMATIONKEY lpKey) PURE;
|
||||
STDMETHOD(ModifyKey)(THIS_ LPD3DRMANIMATIONKEY lpKey) PURE;
|
||||
STDMETHOD(GetKeys)(THIS_ D3DVALUE dvTimeMin,
|
||||
D3DVALUE dvTimeMax, LPDWORD lpdwNumKeys,
|
||||
LPD3DRMANIMATIONKEY lpKey);
|
||||
D3DVALUE dvTimeMax, LPDWORD lpdwNumKeys,
|
||||
LPD3DRMANIMATIONKEY lpKey);
|
||||
};
|
||||
|
||||
#undef INTERFACE
|
||||
|
@ -2,8 +2,8 @@
|
||||
*
|
||||
* Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved.
|
||||
*
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
* File: d3drm.h
|
||||
* Content: Direct3DRM include file
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
/*
|
||||
* GUIDS used by Direct3DRM Windows interface
|
||||
*/
|
||||
DEFINE_GUID(IID_IDirect3DRMWinDevice, 0xc5016cc0, 0xd273, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
DEFINE_GUID(IID_IDirect3DRMWinDevice, 0xc5016cc0, 0xd273, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
|
||||
|
||||
WIN_TYPES(IDirect3DRMWinDevice, DIRECT3DRMWINDEVICE);
|
||||
|
||||
|
@ -10,15 +10,19 @@
|
||||
#ifndef _D3DTYPES_H_
|
||||
#define _D3DTYPES_H_
|
||||
|
||||
#ifndef DIRECT3D_VERSION
|
||||
#define DIRECT3D_VERSION 0x0700
|
||||
#endif
|
||||
|
||||
#if (DIRECT3D_VERSION >= 0x0800)
|
||||
#pragma message("should not include d3dtypes.h when compiling for DX8 or newer interfaces")
|
||||
#endif
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include <float.h>
|
||||
#include "ddraw.h"
|
||||
|
||||
#ifndef DIRECT3D_VERSION
|
||||
#define DIRECT3D_VERSION 0x0700
|
||||
#endif
|
||||
|
||||
#pragma warning(disable:4201) // anonymous unions warning
|
||||
#pragma pack(4)
|
||||
|
||||
@ -27,7 +31,21 @@
|
||||
|
||||
#define D3DVALP(val, prec) ((float)(val))
|
||||
#define D3DVAL(val) ((float)(val))
|
||||
|
||||
#ifndef DX_SHARED_DEFINES
|
||||
|
||||
/*
|
||||
* This definition is shared with other DirectX components whose header files
|
||||
* might already have defined it. Therefore, we don't define this type if
|
||||
* someone else already has (as indicated by the definition of
|
||||
* DX_SHARED_DEFINES). We don't set DX_SHARED_DEFINES here as there are
|
||||
* other types in this header that are also shared. The last of these
|
||||
* shared defines in this file will set DX_SHARED_DEFINES.
|
||||
*/
|
||||
typedef float D3DVALUE, *LPD3DVALUE;
|
||||
|
||||
#endif /* DX_SHARED_DEFINES */
|
||||
|
||||
#define D3DDivide(a, b) (float)((double) (a) / (double) (b))
|
||||
#define D3DMultiply(a, b) ((a) * (b))
|
||||
|
||||
@ -103,12 +121,29 @@ typedef HRESULT (CALLBACK* LPD3DVALIDATECALLBACK)(LPVOID lpUserArg, DWORD dwOffs
|
||||
typedef HRESULT (CALLBACK* LPD3DENUMTEXTUREFORMATSCALLBACK)(LPDDSURFACEDESC lpDdsd, LPVOID lpContext);
|
||||
typedef HRESULT (CALLBACK* LPD3DENUMPIXELFORMATSCALLBACK)(LPDDPIXELFORMAT lpDDPixFmt, LPVOID lpContext);
|
||||
|
||||
typedef DWORD D3DCOLOR, *LPD3DCOLOR;
|
||||
#ifndef DX_SHARED_DEFINES
|
||||
|
||||
/*
|
||||
* This definition is shared with other DirectX components whose header files
|
||||
* might already have defined it. Therefore, we don't define this type if
|
||||
* someone else already has (as indicated by the definition of
|
||||
* DX_SHARED_DEFINES). We don't set DX_SHARED_DEFINES here as there are
|
||||
* other types in this header that are also shared. The last of these
|
||||
* shared defines in this file will set DX_SHARED_DEFINES.
|
||||
*/
|
||||
#ifndef D3DCOLOR_DEFINED
|
||||
typedef DWORD D3DCOLOR;
|
||||
#define D3DCOLOR_DEFINED
|
||||
#endif
|
||||
typedef DWORD *LPD3DCOLOR;
|
||||
|
||||
#endif /* DX_SHARED_DEFINES */
|
||||
|
||||
typedef DWORD D3DMATERIALHANDLE, *LPD3DMATERIALHANDLE;
|
||||
typedef DWORD D3DTEXTUREHANDLE, *LPD3DTEXTUREHANDLE;
|
||||
typedef DWORD D3DMATRIXHANDLE, *LPD3DMATRIXHANDLE;
|
||||
|
||||
#ifndef D3DCOLORVALUE_DEFINED
|
||||
typedef struct _D3DCOLORVALUE {
|
||||
union {
|
||||
D3DVALUE r;
|
||||
@ -126,8 +161,12 @@ typedef struct _D3DCOLORVALUE {
|
||||
D3DVALUE a;
|
||||
D3DVALUE dvA;
|
||||
};
|
||||
} D3DCOLORVALUE, *LPD3DCOLORVALUE;
|
||||
} D3DCOLORVALUE;
|
||||
#define D3DCOLORVALUE_DEFINED
|
||||
#endif
|
||||
typedef struct _D3DCOLORVALUE *LPD3DCOLORVALUE;
|
||||
|
||||
#ifndef D3DRECT_DEFINED
|
||||
typedef struct _D3DRECT {
|
||||
union {
|
||||
LONG x1;
|
||||
@ -145,8 +184,21 @@ typedef struct _D3DRECT {
|
||||
LONG y2;
|
||||
LONG lY2;
|
||||
};
|
||||
} D3DRECT, *LPD3DRECT;
|
||||
} D3DRECT;
|
||||
#define D3DRECT_DEFINED
|
||||
#endif
|
||||
typedef struct _D3DRECT *LPD3DRECT;
|
||||
|
||||
#ifndef DX_SHARED_DEFINES
|
||||
|
||||
/*
|
||||
* This definition is shared with other DirectX components whose header files
|
||||
* might already have defined it. Therefore, we don't define this type if
|
||||
* someone else already has (as indicated by the definition of
|
||||
* DX_SHARED_DEFINES).
|
||||
*/
|
||||
|
||||
#ifndef D3DVECTOR_DEFINED
|
||||
typedef struct _D3DVECTOR {
|
||||
union {
|
||||
D3DVALUE x;
|
||||
@ -243,7 +295,19 @@ public:
|
||||
|
||||
#endif
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DVECTOR, *LPD3DVECTOR;
|
||||
} D3DVECTOR;
|
||||
#define D3DVECTOR_DEFINED
|
||||
#endif
|
||||
typedef struct _D3DVECTOR *LPD3DVECTOR;
|
||||
|
||||
/*
|
||||
* As this is the last of the shared defines to be defined we now set
|
||||
* D3D_SHARED_DEFINES to flag that fact that this header has defined these
|
||||
* types.
|
||||
*/
|
||||
#define DX_SHARED_DEFINES
|
||||
|
||||
#endif /* DX_SHARED_DEFINES */
|
||||
|
||||
/*
|
||||
* Vertex data types supported in an ExecuteBuffer.
|
||||
@ -420,6 +484,7 @@ typedef struct _D3DVERTEX {
|
||||
* Matrix, viewport, and tranformation structures and definitions.
|
||||
*/
|
||||
|
||||
#ifndef D3DMATRIX_DEFINED
|
||||
typedef struct _D3DMATRIX {
|
||||
#if(DIRECT3D_VERSION >= 0x0500)
|
||||
#if (defined __cplusplus) && (defined D3D_OVERLOADS)
|
||||
@ -458,7 +523,10 @@ typedef struct _D3DMATRIX {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0600 */
|
||||
#endif
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DMATRIX, *LPD3DMATRIX;
|
||||
} D3DMATRIX;
|
||||
#define D3DMATRIX_DEFINED
|
||||
#endif
|
||||
typedef struct _D3DMATRIX *LPD3DMATRIX;
|
||||
|
||||
#if (defined __cplusplus) && (defined D3D_OVERLOADS)
|
||||
#include "d3dvec.inl"
|
||||
@ -687,6 +755,8 @@ typedef struct _D3DMATERIAL7 {
|
||||
|
||||
#endif /* DIRECT3D_VERSION >= 0x0700 */
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DLIGHTTYPE {
|
||||
D3DLIGHT_POINT = 1,
|
||||
D3DLIGHT_SPOT = 2,
|
||||
@ -700,6 +770,13 @@ typedef enum _D3DLIGHTTYPE {
|
||||
D3DLIGHT_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */
|
||||
} D3DLIGHTTYPE;
|
||||
|
||||
#else
|
||||
typedef enum _D3DLIGHTTYPE D3DLIGHTTYPE;
|
||||
#define D3DLIGHT_PARALLELPOINT (D3DLIGHTTYPE)4
|
||||
#define D3DLIGHT_GLSPOT (D3DLIGHTTYPE)5
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
/*
|
||||
* Structure defining a light source and its properties.
|
||||
*/
|
||||
@ -856,6 +933,8 @@ typedef struct _D3DPICKRECORD {
|
||||
* execute buffer.
|
||||
*/
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DSHADEMODE {
|
||||
D3DSHADE_FLAT = 1,
|
||||
D3DSHADE_GOURAUD = 2,
|
||||
@ -879,6 +958,8 @@ typedef struct _D3DLINEPATTERN {
|
||||
WORD wLinePattern;
|
||||
} D3DLINEPATTERN;
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DTEXTUREFILTER {
|
||||
D3DFILTER_NEAREST = 1,
|
||||
D3DFILTER_LINEAR = 2,
|
||||
@ -891,6 +972,8 @@ typedef enum _D3DTEXTUREFILTER {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DTEXTUREFILTER;
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DBLEND {
|
||||
D3DBLEND_ZERO = 1,
|
||||
D3DBLEND_ONE = 2,
|
||||
@ -910,6 +993,8 @@ typedef enum _D3DBLEND {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DBLEND;
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DTEXTUREBLEND {
|
||||
D3DTBLEND_DECAL = 1,
|
||||
D3DTBLEND_MODULATE = 2,
|
||||
@ -924,6 +1009,8 @@ typedef enum _D3DTEXTUREBLEND {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DTEXTUREBLEND;
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DTEXTUREADDRESS {
|
||||
D3DTADDRESS_WRAP = 1,
|
||||
D3DTADDRESS_MIRROR = 2,
|
||||
@ -990,6 +1077,8 @@ typedef enum _D3DZBUFFERTYPE {
|
||||
} D3DZBUFFERTYPE;
|
||||
#endif /* DIRECT3D_VERSION >= 0x0600 */
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#if(DIRECT3D_VERSION >= 0x0500)
|
||||
typedef enum _D3DANTIALIASMODE {
|
||||
D3DANTIALIAS_NONE = 0,
|
||||
@ -1006,6 +1095,8 @@ typedef enum _D3DVERTEXTYPE {
|
||||
D3DVT_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */
|
||||
} D3DVERTEXTYPE;
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
// Primitives supported by draw-primitive API
|
||||
typedef enum _D3DPRIMITIVETYPE {
|
||||
D3DPT_POINTLIST = 1,
|
||||
@ -1017,6 +1108,8 @@ typedef enum _D3DPRIMITIVETYPE {
|
||||
D3DPT_FORCE_DWORD = 0x7fffffff, /* force 32-bit size enum */
|
||||
} D3DPRIMITIVETYPE;
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
/*
|
||||
* Amount to add to a state to generate the override for that state.
|
||||
@ -1028,6 +1121,8 @@ typedef enum _D3DPRIMITIVETYPE {
|
||||
*/
|
||||
#define D3DSTATE_OVERRIDE(type) (D3DRENDERSTATETYPE)(((DWORD) (type) + D3DSTATE_OVERRIDE_BIAS))
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DTRANSFORMSTATETYPE {
|
||||
D3DTRANSFORMSTATE_WORLD = 1,
|
||||
D3DTRANSFORMSTATE_VIEW = 2,
|
||||
@ -1050,6 +1145,29 @@ typedef enum _D3DTRANSFORMSTATETYPE {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DTRANSFORMSTATETYPE;
|
||||
|
||||
#else
|
||||
|
||||
//
|
||||
// legacy transform state names
|
||||
//
|
||||
typedef enum _D3DTRANSFORMSTATETYPE D3DTRANSFORMSTATETYPE;
|
||||
#define D3DTRANSFORMSTATE_WORLD (D3DTRANSFORMSTATETYPE)1
|
||||
#define D3DTRANSFORMSTATE_VIEW (D3DTRANSFORMSTATETYPE)2
|
||||
#define D3DTRANSFORMSTATE_PROJECTION (D3DTRANSFORMSTATETYPE)3
|
||||
#define D3DTRANSFORMSTATE_WORLD1 (D3DTRANSFORMSTATETYPE)4
|
||||
#define D3DTRANSFORMSTATE_WORLD2 (D3DTRANSFORMSTATETYPE)5
|
||||
#define D3DTRANSFORMSTATE_WORLD3 (D3DTRANSFORMSTATETYPE)6
|
||||
#define D3DTRANSFORMSTATE_TEXTURE0 (D3DTRANSFORMSTATETYPE)16
|
||||
#define D3DTRANSFORMSTATE_TEXTURE1 (D3DTRANSFORMSTATETYPE)17
|
||||
#define D3DTRANSFORMSTATE_TEXTURE2 (D3DTRANSFORMSTATETYPE)18
|
||||
#define D3DTRANSFORMSTATE_TEXTURE3 (D3DTRANSFORMSTATETYPE)19
|
||||
#define D3DTRANSFORMSTATE_TEXTURE4 (D3DTRANSFORMSTATETYPE)20
|
||||
#define D3DTRANSFORMSTATE_TEXTURE5 (D3DTRANSFORMSTATETYPE)21
|
||||
#define D3DTRANSFORMSTATE_TEXTURE6 (D3DTRANSFORMSTATETYPE)22
|
||||
#define D3DTRANSFORMSTATE_TEXTURE7 (D3DTRANSFORMSTATETYPE)23
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DLIGHTSTATETYPE {
|
||||
D3DLIGHTSTATE_MATERIAL = 1,
|
||||
D3DLIGHTSTATE_AMBIENT = 2,
|
||||
@ -1066,6 +1184,8 @@ typedef enum _D3DLIGHTSTATETYPE {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DLIGHTSTATETYPE;
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
typedef enum _D3DRENDERSTATETYPE {
|
||||
D3DRENDERSTATE_ANTIALIAS = 2, /* D3DANTIALIASMODE */
|
||||
D3DRENDERSTATE_TEXTUREPERSPECTIVE = 4, /* TRUE for perspective correction */
|
||||
@ -1224,6 +1344,152 @@ typedef enum _D3DRENDERSTATETYPE {
|
||||
#endif /* DIRECT3D_VERSION >= 0x0500 */
|
||||
} D3DRENDERSTATETYPE;
|
||||
|
||||
#else
|
||||
|
||||
typedef enum _D3DRENDERSTATETYPE D3DRENDERSTATETYPE;
|
||||
|
||||
//
|
||||
// legacy renderstate names
|
||||
//
|
||||
#define D3DRENDERSTATE_TEXTUREPERSPECTIVE (D3DRENDERSTATETYPE)4
|
||||
#define D3DRENDERSTATE_ZENABLE (D3DRENDERSTATETYPE)7
|
||||
#define D3DRENDERSTATE_FILLMODE (D3DRENDERSTATETYPE)8
|
||||
#define D3DRENDERSTATE_SHADEMODE (D3DRENDERSTATETYPE)9
|
||||
#define D3DRENDERSTATE_LINEPATTERN (D3DRENDERSTATETYPE)10
|
||||
#define D3DRENDERSTATE_ZWRITEENABLE (D3DRENDERSTATETYPE)14
|
||||
#define D3DRENDERSTATE_ALPHATESTENABLE (D3DRENDERSTATETYPE)15
|
||||
#define D3DRENDERSTATE_LASTPIXEL (D3DRENDERSTATETYPE)16
|
||||
#define D3DRENDERSTATE_SRCBLEND (D3DRENDERSTATETYPE)19
|
||||
#define D3DRENDERSTATE_DESTBLEND (D3DRENDERSTATETYPE)20
|
||||
#define D3DRENDERSTATE_CULLMODE (D3DRENDERSTATETYPE)22
|
||||
#define D3DRENDERSTATE_ZFUNC (D3DRENDERSTATETYPE)23
|
||||
#define D3DRENDERSTATE_ALPHAREF (D3DRENDERSTATETYPE)24
|
||||
#define D3DRENDERSTATE_ALPHAFUNC (D3DRENDERSTATETYPE)25
|
||||
#define D3DRENDERSTATE_DITHERENABLE (D3DRENDERSTATETYPE)26
|
||||
#define D3DRENDERSTATE_ALPHABLENDENABLE (D3DRENDERSTATETYPE)27
|
||||
#define D3DRENDERSTATE_FOGENABLE (D3DRENDERSTATETYPE)28
|
||||
#define D3DRENDERSTATE_SPECULARENABLE (D3DRENDERSTATETYPE)29
|
||||
#define D3DRENDERSTATE_ZVISIBLE (D3DRENDERSTATETYPE)30
|
||||
#define D3DRENDERSTATE_STIPPLEDALPHA (D3DRENDERSTATETYPE)33
|
||||
#define D3DRENDERSTATE_FOGCOLOR (D3DRENDERSTATETYPE)34
|
||||
#define D3DRENDERSTATE_FOGTABLEMODE (D3DRENDERSTATETYPE)35
|
||||
#define D3DRENDERSTATE_FOGSTART (D3DRENDERSTATETYPE)36
|
||||
#define D3DRENDERSTATE_FOGEND (D3DRENDERSTATETYPE)37
|
||||
#define D3DRENDERSTATE_FOGDENSITY (D3DRENDERSTATETYPE)38
|
||||
#define D3DRENDERSTATE_EDGEANTIALIAS (D3DRENDERSTATETYPE)40
|
||||
#define D3DRENDERSTATE_ZBIAS (D3DRENDERSTATETYPE)47
|
||||
#define D3DRENDERSTATE_RANGEFOGENABLE (D3DRENDERSTATETYPE)48
|
||||
#define D3DRENDERSTATE_STENCILENABLE (D3DRENDERSTATETYPE)52
|
||||
#define D3DRENDERSTATE_STENCILFAIL (D3DRENDERSTATETYPE)53
|
||||
#define D3DRENDERSTATE_STENCILZFAIL (D3DRENDERSTATETYPE)54
|
||||
#define D3DRENDERSTATE_STENCILPASS (D3DRENDERSTATETYPE)55
|
||||
#define D3DRENDERSTATE_STENCILFUNC (D3DRENDERSTATETYPE)56
|
||||
#define D3DRENDERSTATE_STENCILREF (D3DRENDERSTATETYPE)57
|
||||
#define D3DRENDERSTATE_STENCILMASK (D3DRENDERSTATETYPE)58
|
||||
#define D3DRENDERSTATE_STENCILWRITEMASK (D3DRENDERSTATETYPE)59
|
||||
#define D3DRENDERSTATE_TEXTUREFACTOR (D3DRENDERSTATETYPE)60
|
||||
#define D3DRENDERSTATE_WRAP0 (D3DRENDERSTATETYPE)128
|
||||
#define D3DRENDERSTATE_WRAP1 (D3DRENDERSTATETYPE)129
|
||||
#define D3DRENDERSTATE_WRAP2 (D3DRENDERSTATETYPE)130
|
||||
#define D3DRENDERSTATE_WRAP3 (D3DRENDERSTATETYPE)131
|
||||
#define D3DRENDERSTATE_WRAP4 (D3DRENDERSTATETYPE)132
|
||||
#define D3DRENDERSTATE_WRAP5 (D3DRENDERSTATETYPE)133
|
||||
#define D3DRENDERSTATE_WRAP6 (D3DRENDERSTATETYPE)134
|
||||
#define D3DRENDERSTATE_WRAP7 (D3DRENDERSTATETYPE)135
|
||||
|
||||
#define D3DRENDERSTATE_CLIPPING (D3DRENDERSTATETYPE)136
|
||||
#define D3DRENDERSTATE_LIGHTING (D3DRENDERSTATETYPE)137
|
||||
#define D3DRENDERSTATE_EXTENTS (D3DRENDERSTATETYPE)138
|
||||
#define D3DRENDERSTATE_AMBIENT (D3DRENDERSTATETYPE)139
|
||||
#define D3DRENDERSTATE_FOGVERTEXMODE (D3DRENDERSTATETYPE)140
|
||||
#define D3DRENDERSTATE_COLORVERTEX (D3DRENDERSTATETYPE)141
|
||||
#define D3DRENDERSTATE_LOCALVIEWER (D3DRENDERSTATETYPE)142
|
||||
#define D3DRENDERSTATE_NORMALIZENORMALS (D3DRENDERSTATETYPE)143
|
||||
#define D3DRENDERSTATE_COLORKEYBLENDENABLE (D3DRENDERSTATETYPE)144
|
||||
#define D3DRENDERSTATE_DIFFUSEMATERIALSOURCE (D3DRENDERSTATETYPE)145
|
||||
#define D3DRENDERSTATE_SPECULARMATERIALSOURCE (D3DRENDERSTATETYPE)146
|
||||
#define D3DRENDERSTATE_AMBIENTMATERIALSOURCE (D3DRENDERSTATETYPE)147
|
||||
#define D3DRENDERSTATE_EMISSIVEMATERIALSOURCE (D3DRENDERSTATETYPE)148
|
||||
#define D3DRENDERSTATE_VERTEXBLEND (D3DRENDERSTATETYPE)151
|
||||
#define D3DRENDERSTATE_CLIPPLANEENABLE (D3DRENDERSTATETYPE)152
|
||||
|
||||
//
|
||||
// retired renderstates - not supported for DX7 interfaces
|
||||
//
|
||||
#define D3DRENDERSTATE_TEXTUREHANDLE (D3DRENDERSTATETYPE)1
|
||||
#define D3DRENDERSTATE_ANTIALIAS (D3DRENDERSTATETYPE)2
|
||||
#define D3DRENDERSTATE_TEXTUREADDRESS (D3DRENDERSTATETYPE)3
|
||||
#define D3DRENDERSTATE_WRAPU (D3DRENDERSTATETYPE)5
|
||||
#define D3DRENDERSTATE_WRAPV (D3DRENDERSTATETYPE)6
|
||||
#define D3DRENDERSTATE_MONOENABLE (D3DRENDERSTATETYPE)11
|
||||
#define D3DRENDERSTATE_ROP2 (D3DRENDERSTATETYPE)12
|
||||
#define D3DRENDERSTATE_PLANEMASK (D3DRENDERSTATETYPE)13
|
||||
#define D3DRENDERSTATE_TEXTUREMAG (D3DRENDERSTATETYPE)17
|
||||
#define D3DRENDERSTATE_TEXTUREMIN (D3DRENDERSTATETYPE)18
|
||||
#define D3DRENDERSTATE_TEXTUREMAPBLEND (D3DRENDERSTATETYPE)21
|
||||
#define D3DRENDERSTATE_SUBPIXEL (D3DRENDERSTATETYPE)31
|
||||
#define D3DRENDERSTATE_SUBPIXELX (D3DRENDERSTATETYPE)32
|
||||
#define D3DRENDERSTATE_STIPPLEENABLE (D3DRENDERSTATETYPE)39
|
||||
#define D3DRENDERSTATE_OLDALPHABLENDENABLE (D3DRENDERSTATETYPE)42
|
||||
#define D3DRENDERSTATE_BORDERCOLOR (D3DRENDERSTATETYPE)43
|
||||
#define D3DRENDERSTATE_TEXTUREADDRESSU (D3DRENDERSTATETYPE)44
|
||||
#define D3DRENDERSTATE_TEXTUREADDRESSV (D3DRENDERSTATETYPE)45
|
||||
#define D3DRENDERSTATE_MIPMAPLODBIAS (D3DRENDERSTATETYPE)46
|
||||
#define D3DRENDERSTATE_ANISOTROPY (D3DRENDERSTATETYPE)49
|
||||
#define D3DRENDERSTATE_FLUSHBATCH (D3DRENDERSTATETYPE)50
|
||||
#define D3DRENDERSTATE_TRANSLUCENTSORTINDEPENDENT (D3DRENDERSTATETYPE)51
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN00 (D3DRENDERSTATETYPE)64
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN01 (D3DRENDERSTATETYPE)65
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN02 (D3DRENDERSTATETYPE)66
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN03 (D3DRENDERSTATETYPE)67
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN04 (D3DRENDERSTATETYPE)68
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN05 (D3DRENDERSTATETYPE)69
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN06 (D3DRENDERSTATETYPE)70
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN07 (D3DRENDERSTATETYPE)71
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN08 (D3DRENDERSTATETYPE)72
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN09 (D3DRENDERSTATETYPE)73
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN10 (D3DRENDERSTATETYPE)74
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN11 (D3DRENDERSTATETYPE)75
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN12 (D3DRENDERSTATETYPE)76
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN13 (D3DRENDERSTATETYPE)77
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN14 (D3DRENDERSTATETYPE)78
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN15 (D3DRENDERSTATETYPE)79
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN16 (D3DRENDERSTATETYPE)80
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN17 (D3DRENDERSTATETYPE)81
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN18 (D3DRENDERSTATETYPE)82
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN19 (D3DRENDERSTATETYPE)83
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN20 (D3DRENDERSTATETYPE)84
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN21 (D3DRENDERSTATETYPE)85
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN22 (D3DRENDERSTATETYPE)86
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN23 (D3DRENDERSTATETYPE)87
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN24 (D3DRENDERSTATETYPE)88
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN25 (D3DRENDERSTATETYPE)89
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN26 (D3DRENDERSTATETYPE)90
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN27 (D3DRENDERSTATETYPE)91
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN28 (D3DRENDERSTATETYPE)92
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN29 (D3DRENDERSTATETYPE)93
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN30 (D3DRENDERSTATETYPE)94
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN31 (D3DRENDERSTATETYPE)95
|
||||
|
||||
//
|
||||
// retired renderstates - not supported for DX8 interfaces
|
||||
//
|
||||
#define D3DRENDERSTATE_COLORKEYENABLE (D3DRENDERSTATETYPE)41
|
||||
#define D3DRENDERSTATE_COLORKEYBLENDENABLE (D3DRENDERSTATETYPE)144
|
||||
|
||||
//
|
||||
// retired renderstate names - the values are still used under new naming conventions
|
||||
//
|
||||
#define D3DRENDERSTATE_BLENDENABLE (D3DRENDERSTATETYPE)27
|
||||
#define D3DRENDERSTATE_FOGTABLESTART (D3DRENDERSTATETYPE)36
|
||||
#define D3DRENDERSTATE_FOGTABLEEND (D3DRENDERSTATETYPE)37
|
||||
#define D3DRENDERSTATE_FOGTABLEDENSITY (D3DRENDERSTATETYPE)38
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
// Values for material source
|
||||
typedef enum _D3DMATERIALCOLORSOURCE
|
||||
{
|
||||
@ -1260,11 +1526,15 @@ typedef enum _D3DMATERIALCOLORSOURCE
|
||||
|
||||
#endif /* DIRECT3D_VERSION >= 0x0700 */
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#define D3DRENDERSTATE_STIPPLEPATTERN(y) (D3DRENDERSTATE_STIPPLEPATTERN00 + (y))
|
||||
|
||||
typedef struct _D3DSTATE {
|
||||
union {
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
D3DTRANSFORMSTATETYPE dtstTransformStateType;
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
D3DLIGHTSTATETYPE dlstLightStateType;
|
||||
D3DRENDERSTATETYPE drstRenderStateType;
|
||||
};
|
||||
@ -1274,6 +1544,7 @@ typedef struct _D3DSTATE {
|
||||
};
|
||||
} D3DSTATE, *LPD3DSTATE;
|
||||
|
||||
|
||||
/*
|
||||
* Operation used to load matrices
|
||||
* hDstMat = hSrcMat
|
||||
@ -1316,6 +1587,8 @@ typedef struct _D3DPROCESSVERTICES {
|
||||
#if(DIRECT3D_VERSION >= 0x0600)
|
||||
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
/*
|
||||
* State enumerants for per-stage texture processing.
|
||||
*/
|
||||
@ -1433,6 +1706,7 @@ typedef enum _D3DTEXTUREOP
|
||||
#define D3DTA_COMPLEMENT 0x00000010 // take 1.0 - x
|
||||
#define D3DTA_ALPHAREPLICATE 0x00000020 // replicate alpha to color components
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
/*
|
||||
* IDirect3DTexture2 State Filter Types
|
||||
@ -1652,6 +1926,9 @@ typedef struct _D3DVERTEXBUFFERDESC {
|
||||
#define D3DVOP_CLIP (1 << 2)
|
||||
#define D3DVOP_EXTENTS (1 << 3)
|
||||
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
/* The maximum number of vertices user can pass to any d3d
|
||||
drawing function or to create vertex buffer with
|
||||
*/
|
||||
@ -1667,8 +1944,13 @@ typedef struct _D3DVERTEXBUFFERDESC {
|
||||
#define D3DPV_DONOTCOPYDATA (1 << 0)
|
||||
|
||||
#endif /* DIRECT3D_VERSION >= 0x0700 */
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
//-------------------------------------------------------------------
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
// Flexible vertex format bits
|
||||
//
|
||||
#define D3DFVF_RESERVED0 0x001
|
||||
@ -1702,12 +1984,17 @@ typedef struct _D3DVERTEXBUFFERDESC {
|
||||
|
||||
#define D3DFVF_RESERVED2 0xf000 // 4 reserved bits
|
||||
|
||||
#else
|
||||
#define D3DFVF_RESERVED1 0x020
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#define D3DFVF_VERTEX ( D3DFVF_XYZ | D3DFVF_NORMAL | D3DFVF_TEX1 )
|
||||
#define D3DFVF_LVERTEX ( D3DFVF_XYZ | D3DFVF_RESERVED1 | D3DFVF_DIFFUSE | \
|
||||
D3DFVF_SPECULAR | D3DFVF_TEX1 )
|
||||
#define D3DFVF_TLVERTEX ( D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | \
|
||||
D3DFVF_TEX1 )
|
||||
|
||||
|
||||
typedef struct _D3DDP_PTRSTRIDE
|
||||
{
|
||||
LPVOID lpvData;
|
||||
@ -1759,6 +2046,8 @@ typedef struct _D3DDRAWPRIMITIVESTRIDEDDATA
|
||||
|
||||
#endif /* DIRECT3D_VERSION >= 0x0600 */
|
||||
|
||||
#if(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#if(DIRECT3D_VERSION >= 0x0700)
|
||||
|
||||
// To be used with GetInfo()
|
||||
@ -1809,6 +2098,18 @@ typedef enum _D3DTEXTURETRANSFORMFLAGS {
|
||||
|
||||
#endif /* DIRECT3D_VERSION >= 0x0700 */
|
||||
|
||||
#else
|
||||
//
|
||||
// legacy vertex blend names
|
||||
//
|
||||
typedef enum _D3DVERTEXBLENDFLAGS D3DVERTEXBLENDFLAGS;
|
||||
#define D3DVBLEND_DISABLE (D3DVERTEXBLENDFLAGS)0
|
||||
#define D3DVBLEND_1WEIGHT (D3DVERTEXBLENDFLAGS)1
|
||||
#define D3DVBLEND_2WEIGHTS (D3DVERTEXBLENDFLAGS)2
|
||||
#define D3DVBLEND_3WEIGHTS (D3DVERTEXBLENDFLAGS)3
|
||||
|
||||
#endif //(DIRECT3D_VERSION < 0x0800)
|
||||
|
||||
#pragma pack()
|
||||
#pragma warning(default:4201)
|
||||
|
||||
|
@ -10,8 +10,15 @@
|
||||
#ifndef __DDRAW_INCLUDED__
|
||||
#define __DDRAW_INCLUDED__
|
||||
|
||||
//Disable the nameless union warning
|
||||
//Disable the nameless union warning when building internally
|
||||
#undef ENABLE_NAMELESS_UNION_PRAGMA
|
||||
#ifdef DIRECTX_REDIST
|
||||
#define ENABLE_NAMELESS_UNION_PRAGMA
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_NAMELESS_UNION_PRAGMA
|
||||
#pragma warning(disable:4201)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* If you wish an application built against the newest version of DirectDraw
|
||||
@ -88,7 +95,6 @@ DEFINE_GUID( IID_IDirectDrawSurface2, 0x57805885,0x6eec,0x11cf,0x94,0x
|
||||
DEFINE_GUID( IID_IDirectDrawSurface3, 0xDA044E00,0x69B2,0x11D0,0xA1,0xD5,0x00,0xAA,0x00,0xB8,0xDF,0xBB );
|
||||
DEFINE_GUID( IID_IDirectDrawSurface4, 0x0B2B8630,0xAD35,0x11D0,0x8E,0xA6,0x00,0x60,0x97,0x97,0xEA,0x5B );
|
||||
DEFINE_GUID( IID_IDirectDrawSurface7, 0x06675a80,0x3b9b,0x11d2,0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b );
|
||||
|
||||
DEFINE_GUID( IID_IDirectDrawPalette, 0x6C14DB84,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
||||
DEFINE_GUID( IID_IDirectDrawClipper, 0x6C14DB85,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
||||
DEFINE_GUID( IID_IDirectDrawColorControl, 0x4B9F0EE0,0x0D7E,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8 );
|
||||
@ -118,7 +124,6 @@ typedef struct IDirectDrawSurface2 FAR *LPDIRECTDRAWSURFACE2;
|
||||
typedef struct IDirectDrawSurface3 FAR *LPDIRECTDRAWSURFACE3;
|
||||
typedef struct IDirectDrawSurface4 FAR *LPDIRECTDRAWSURFACE4;
|
||||
typedef struct IDirectDrawSurface7 FAR *LPDIRECTDRAWSURFACE7;
|
||||
|
||||
typedef struct IDirectDrawPalette FAR *LPDIRECTDRAWPALETTE;
|
||||
typedef struct IDirectDrawClipper FAR *LPDIRECTDRAWCLIPPER;
|
||||
typedef struct IDirectDrawColorControl FAR *LPDIRECTDRAWCOLORCONTROL;
|
||||
@ -340,7 +345,11 @@ typedef struct _DDSCAPSEX
|
||||
{
|
||||
DWORD dwCaps2;
|
||||
DWORD dwCaps3;
|
||||
DWORD dwCaps4;
|
||||
union
|
||||
{
|
||||
DWORD dwCaps4;
|
||||
DWORD dwVolumeDepth;
|
||||
} DUMMYUNIONNAMEN(1);
|
||||
} DDSCAPSEX, FAR * LPDDSCAPSEX;
|
||||
|
||||
/*
|
||||
@ -351,7 +360,11 @@ typedef struct _DDSCAPS2
|
||||
DWORD dwCaps; // capabilities of surface wanted
|
||||
DWORD dwCaps2;
|
||||
DWORD dwCaps3;
|
||||
DWORD dwCaps4;
|
||||
union
|
||||
{
|
||||
DWORD dwCaps4;
|
||||
DWORD dwVolumeDepth;
|
||||
} DUMMYUNIONNAMEN(1);
|
||||
} DDSCAPS2;
|
||||
|
||||
typedef DDSCAPS2 FAR* LPDDSCAPS2;
|
||||
@ -696,6 +709,8 @@ typedef struct _DDPIXELFORMAT
|
||||
DWORD dwAlphaBitDepth; // how many bits for alpha channels
|
||||
DWORD dwLuminanceBitCount; // how many bits per pixel
|
||||
DWORD dwBumpBitCount; // how many bits per "buxel", total
|
||||
DWORD dwPrivateFormatBitCount;// Bits per pixel of private driver formats. Only valid in texture
|
||||
// format list and if DDPF_D3DFORMAT is set
|
||||
} DUMMYUNIONNAMEN(1);
|
||||
union
|
||||
{
|
||||
@ -704,6 +719,7 @@ typedef struct _DDPIXELFORMAT
|
||||
DWORD dwStencilBitDepth; // how many stencil bits (note: dwZBufferBitDepth-dwStencilBitDepth is total Z-only bits)
|
||||
DWORD dwLuminanceBitMask; // mask for luminance bits
|
||||
DWORD dwBumpDuBitMask; // mask for bump map U delta bits
|
||||
DWORD dwOperations; // DDPF_D3DFORMAT Operations
|
||||
} DUMMYUNIONNAMEN(2);
|
||||
union
|
||||
{
|
||||
@ -711,6 +727,12 @@ typedef struct _DDPIXELFORMAT
|
||||
DWORD dwUBitMask; // mask for U bits
|
||||
DWORD dwZBitMask; // mask for Z bits
|
||||
DWORD dwBumpDvBitMask; // mask for bump map V delta bits
|
||||
struct
|
||||
{
|
||||
WORD wFlipMSTypes; // Multisample methods supported via flip for this D3DFORMAT
|
||||
WORD wBltMSTypes; // Multisample methods supported via blt for this D3DFORMAT
|
||||
} MultiSampleCaps;
|
||||
|
||||
} DUMMYUNIONNAMEN(3);
|
||||
union
|
||||
{
|
||||
@ -1362,7 +1384,6 @@ DECLARE_INTERFACE_( IDirectDrawPalette, IUnknown )
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* IDirectDrawClipper
|
||||
*/
|
||||
@ -2122,7 +2143,6 @@ DECLARE_INTERFACE_( IDirectDrawSurface7, IUnknown )
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* IDirectDrawColorControl
|
||||
*/
|
||||
@ -2241,7 +2261,11 @@ typedef struct _DDSURFACEDESC2
|
||||
LONG lPitch; // distance to start of next line (return value only)
|
||||
DWORD dwLinearSize; // Formless late-allocated optimized surface size
|
||||
} DUMMYUNIONNAMEN(1);
|
||||
DWORD dwBackBufferCount; // number of back buffers requested
|
||||
union
|
||||
{
|
||||
DWORD dwBackBufferCount; // number of back buffers requested
|
||||
DWORD dwDepth; // the depth if this is a volume texture
|
||||
} DUMMYUNIONNAMEN(5);
|
||||
union
|
||||
{
|
||||
DWORD dwMipMapCount; // number of mip-map levels requestde
|
||||
@ -2362,11 +2386,16 @@ typedef struct _DDSURFACEDESC2
|
||||
* dwSrcVBHandle is valid
|
||||
*/
|
||||
#define DDSD_SRCVBHANDLE 0x00400000l
|
||||
|
||||
/*
|
||||
* dwDepth is valid
|
||||
*/
|
||||
#define DDSD_DEPTH 0x00800000l
|
||||
|
||||
/*
|
||||
* All input fields are valid.
|
||||
*/
|
||||
#define DDSD_ALL 0x007ff9eel
|
||||
|
||||
#define DDSD_ALL 0x00fff9eel
|
||||
|
||||
/*
|
||||
* DDOPTSURFACEDESC
|
||||
@ -2601,6 +2630,7 @@ typedef struct _DDCOLORCONTROL
|
||||
* obsolete.
|
||||
*/
|
||||
#define DDSCAPS_RESERVED3 0x00000400l
|
||||
#define DDSCAPS_PRIMARYSURFACELEFT 0x00000000l
|
||||
|
||||
/*
|
||||
* Indicates that this surface memory was allocated in system memory
|
||||
@ -2726,14 +2756,11 @@ typedef struct _DDCOLORCONTROL
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Indicates that this surface will receive data from a video port using
|
||||
* the de-interlacing hardware. This allows the driver to allocate memory
|
||||
* for any extra buffers that may be required. The DDSCAPS_VIDEOPORT and
|
||||
* DDSCAPS_OVERLAY flags must also be set.
|
||||
* This bit is reserved
|
||||
*/
|
||||
#define DDSCAPS2_HARDWAREDEINTERLACE 0x00000002L
|
||||
#define DDSCAPS2_RESERVED4 0x00000002L
|
||||
#define DDSCAPS2_HARDWAREDEINTERLACE 0x00000000L
|
||||
|
||||
/*
|
||||
* Indicates to the driver that this surface will be locked very frequently
|
||||
@ -2831,7 +2858,52 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDSCAPS2_STEREOSURFACELEFT 0x00080000L
|
||||
|
||||
|
||||
/*
|
||||
* Indicates that the surface is a volume.
|
||||
* Can be combined with DDSCAPS_MIPMAP to indicate a multi-level volume
|
||||
*/
|
||||
#define DDSCAPS2_VOLUME 0x00200000L
|
||||
|
||||
/*
|
||||
* Indicates that the surface may be locked multiple times by the application.
|
||||
* This cap cannot be used with DDSCAPS2_OPAQUE.
|
||||
*/
|
||||
#define DDSCAPS2_NOTUSERLOCKABLE 0x00400000L
|
||||
|
||||
/*
|
||||
* Indicates that the vertex buffer data can be used to render points and
|
||||
* point sprites.
|
||||
*/
|
||||
#define DDSCAPS2_POINTS 0x00800000L
|
||||
|
||||
/*
|
||||
* Indicates that the vertex buffer data can be used to render rt pactches.
|
||||
*/
|
||||
#define DDSCAPS2_RTPATCHES 0x01000000L
|
||||
|
||||
/*
|
||||
* Indicates that the vertex buffer data can be used to render n patches.
|
||||
*/
|
||||
#define DDSCAPS2_NPATCHES 0x02000000L
|
||||
|
||||
/*
|
||||
* This bit is reserved for internal use
|
||||
*/
|
||||
#define DDSCAPS2_RESERVED3 0x04000000L
|
||||
|
||||
|
||||
/*
|
||||
* Indicates that the contents of the backbuffer do not have to be preserved
|
||||
* the contents of the backbuffer after they are presented.
|
||||
*/
|
||||
#define DDSCAPS2_DISCARDBACKBUFFER 0x10000000L
|
||||
|
||||
/*
|
||||
* This is a mask that indicates the set of bits that may be set
|
||||
* at createsurface time to indicate number of samples per pixel
|
||||
* when multisampling
|
||||
*/
|
||||
#define DDSCAPS3_MULTISAMPLE_MASK 0x0000001FL
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
@ -3159,11 +3231,11 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDCAPS2_STEREO 0x02000000L
|
||||
|
||||
/*
|
||||
* This caps bit is intended for internal DirectDraw use.
|
||||
* This caps bit is intended for internal DirectDraw use.
|
||||
* -It is only valid if DDCAPS2_NONLOCALVIDMEMCAPS is set.
|
||||
* -If this bit is set, then DDCAPS_CANBLTSYSMEM MUST be set by the driver (and
|
||||
* all the assoicated system memory blt caps must be correct).
|
||||
* -It implies that the system->video blt caps in DDCAPS also apply to system to
|
||||
* -It implies that the system->video blt caps in DDCAPS also apply to system to
|
||||
* nonlocal blts. I.e. the dwSVBCaps, dwSVBCKeyCaps, dwSVBFXCaps and dwSVBRops
|
||||
* members of DDCAPS (DDCORECAPS) are filled in correctly.
|
||||
* -Any blt from system to nonlocal memory that matches these caps bits will
|
||||
@ -3175,6 +3247,10 @@ typedef struct _DDCOLORCONTROL
|
||||
*/
|
||||
#define DDCAPS2_SYSTONONLOCAL_AS_SYSTOLOCAL 0x04000000L
|
||||
|
||||
/*
|
||||
* Indicates that the driver can support PUREHAL.
|
||||
*/
|
||||
#define DDCAPS2_PUREHAL 0x08000000L
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
@ -3267,7 +3343,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#endif //DIRECTDRAW_VERSION
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DIRECTDRAW FX CAPABILITY FLAGS
|
||||
@ -3427,6 +3502,11 @@ typedef struct _DDCOLORCONTROL
|
||||
*/
|
||||
#define DDFXCAPS_OVERLAYMIRRORUPDOWN 0x10000000l
|
||||
|
||||
/*
|
||||
* DirectDraw supports deinterlacing of overlay surfaces
|
||||
*/
|
||||
#define DDFXCAPS_OVERLAYDEINTERLACE 0x20000000l
|
||||
|
||||
/*
|
||||
* Driver can do alpha blending for blits.
|
||||
*/
|
||||
@ -3449,7 +3529,6 @@ typedef struct _DDCOLORCONTROL
|
||||
*/
|
||||
#define DDFXCAPS_OVERLAYFILTER DDFXCAPS_OVERLAYARITHSTRETCHY
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DIRECTDRAW STEREO VIEW CAPABILITIES
|
||||
@ -3971,7 +4050,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDSDM_STANDARDVGAMODE 0x00000001l
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DIRECTDRAW ENUMDISPLAYMODES FLAGS
|
||||
@ -4246,6 +4324,44 @@ typedef struct _DDCOLORCONTROL
|
||||
*/
|
||||
#define DDBLT_DONOTWAIT 0x08000000l
|
||||
|
||||
/*
|
||||
* These flags indicate a presentation blt (i.e. a blt
|
||||
* that moves surface contents from an offscreen back buffer to the primary
|
||||
* surface). The driver is not allowed to "queue" more than three such blts.
|
||||
* The "end" of the presentation blt is indicated, since the
|
||||
* blt may be clipped, in which case the runtime will call the driver with
|
||||
* several blts. All blts (even if not clipped) are tagged with DDBLT_PRESENTATION
|
||||
* and the last (even if not clipped) additionally with DDBLT_LAST_PRESENTATION.
|
||||
* Thus the true rule is that the driver must not schedule a DDBLT_PRESENTATION
|
||||
* blt if there are 3 or more DDBLT_PRESENTLAST blts in the hardware pipe.
|
||||
* If there are such blts in the pipe, the driver should return DDERR_WASSTILLDRAWING
|
||||
* until the oldest queued DDBLT_LAST_PRESENTATION blts has been retired (i.e. the
|
||||
* pixels have been actually written to the primary surface). Once the oldest blt
|
||||
* has been retired, the driver is free to schedule the current blt.
|
||||
* The goal is to provide a mechanism whereby the device's hardware queue never
|
||||
* gets more than 3 frames ahead of the frames being generated by the application.
|
||||
* When excessive queueing occurs, applications become unusable because the application
|
||||
* visibly lags user input, and such problems make windowed interactive applications impossible.
|
||||
* Some drivers may not have sufficient knowledge of their hardware's FIFO to know
|
||||
* when a certain blt has been retired. Such drivers should code cautiously, and
|
||||
* simply not allow any frames to be queued at all. DDBLT_LAST_PRESENTATION should cause
|
||||
* such drivers to return DDERR_WASSTILLDRAWING until the accelerator is completely
|
||||
* finished- exactly as if the application had called Lock on the source surface
|
||||
* before calling Blt.
|
||||
* In other words, the driver is allowed and encouraged to
|
||||
* generate as much latency as it can, but never more than 3 frames worth.
|
||||
* Implementation detail: Drivers should count blts against the SOURCE surface, not
|
||||
* against the primary surface. This enables multiple parallel windowed application
|
||||
* to function more optimally.
|
||||
* This flag is passed only to DX8 or higher drivers.
|
||||
*
|
||||
* APPLICATIONS DO NOT SET THESE FLAGS. THEY ARE SET BY THE DIRECTDRAW RUNTIME.
|
||||
*
|
||||
*/
|
||||
#define DDBLT_PRESENTATION 0x10000000l
|
||||
#define DDBLT_LAST_PRESENTATION 0x20000000l
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
@ -4259,8 +4375,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDBLTFAST_WAIT 0x00000010
|
||||
#define DDBLTFAST_DONOTWAIT 0x00000020
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* FLIP FLAGS
|
||||
@ -4334,7 +4448,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDFLIP_DONOTWAIT 0x00000020L
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DIRECTDRAW SURFACE OVERLAY FLAGS
|
||||
@ -4488,12 +4601,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDOVER_DEGRADEARGBSCALING 0x04000000l
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DIRECTDRAWSURFACE LOCK FLAGS
|
||||
@ -4551,7 +4658,7 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDLOCK_NOOVERWRITE 0x00001000L
|
||||
|
||||
/*
|
||||
* Indicates that no assumptions will be made about the contents of the
|
||||
* Indicates that no assumptions will be made about the contents of the
|
||||
* surface or vertex buffer during this lock.
|
||||
* This enables two things:
|
||||
* - Direct3D or the driver may provide an alternative memory
|
||||
@ -4679,6 +4786,11 @@ typedef struct _DDCOLORCONTROL
|
||||
*/
|
||||
#define DDOVERFX_MIRRORUPDOWN 0x00000004l
|
||||
|
||||
/*
|
||||
* Deinterlace the overlay, if possible
|
||||
*/
|
||||
#define DDOVERFX_DEINTERLACE 0x00000008l
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
@ -4787,7 +4899,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDOVERZ_INSERTINBACKOF 0x00000005l
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DIRECTDRAW SETGAMMARAMP FLAGS
|
||||
@ -5437,7 +5548,6 @@ typedef struct _DDCOLORCONTROL
|
||||
#define DDERR_INVALIDSURFACETYPE MAKE_DDHRESULT( 592 )
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Device does not support optimized surfaces, therefore no video memory optimized surfaces
|
||||
*/
|
||||
@ -5549,7 +5659,10 @@ typedef struct _DDCOLORCONTROL
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_NAMELESS_UNION_PRAGMA
|
||||
#pragma warning(default:4201)
|
||||
#endif
|
||||
|
||||
#endif //__DDRAW_INCLUDED__
|
||||
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (C) 1995-1999 Microsoft Corporation. All Rights Reserved.
|
||||
* Copyright (C) 1995-2000 Microsoft Corporation. All Rights Reserved.
|
||||
*
|
||||
* File: dinputd.h
|
||||
* Content: DirectInput include file for device driver implementors
|
||||
@ -10,7 +10,7 @@
|
||||
#define __DINPUTD_INCLUDED__
|
||||
|
||||
#ifndef DIRECTINPUT_VERSION
|
||||
#define DIRECTINPUT_VERSION 0x0700
|
||||
#define DIRECTINPUT_VERSION 0x0800
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -29,6 +29,8 @@ DEFINE_GUID(IID_IDirectInputEffectDriver, 0x02538130,0x898F,0x11D0,0x9A,0xD0,0
|
||||
DEFINE_GUID(IID_IDirectInputJoyConfig, 0x1DE12AB1,0xC9F5,0x11CF,0xBF,0xC7,0x44,0x45,0x53,0x54,0x00,0x00);
|
||||
DEFINE_GUID(IID_IDirectInputPIDDriver, 0xEEC6993A,0xB3FD,0x11D2,0xA9,0x16,0x00,0xC0,0x4F,0xB9,0x86,0x38);
|
||||
|
||||
DEFINE_GUID(IID_IDirectInputJoyConfig8, 0xeb0d7dfa,0x1990,0x4f27,0xb4,0xd6,0xed,0xf2,0xee,0xc4,0xa4,0x4c);
|
||||
|
||||
#endif /* DIJ_RINGZERO */
|
||||
|
||||
|
||||
@ -254,6 +256,21 @@ typedef struct IDirectInputEffectDriver *LPDIRECTINPUTEFFECTDRIVER;
|
||||
#define JOYTYPE_NOHIDDIRECT 0x00000004l /* Do not use HID directly for this device */
|
||||
#define JOYTYPE_DEFAULTPROPSHEET 0x80000000l /* CPL overrides custom property sheet */
|
||||
|
||||
/* Settings for TypeInfo Flags2 */
|
||||
#define JOYTYPE_DEVICEHIDE 0x00010000l /* Hide unclassified devices */
|
||||
#define JOYTYPE_MOUSEHIDE 0x00020000l /* Hide mice */
|
||||
#define JOYTYPE_KEYBHIDE 0x00040000l /* Hide keyboards */
|
||||
#define JOYTYPE_GAMEHIDE 0x00080000l /* Hide game controllers */
|
||||
#define JOYTYPE_HIDEACTIVE 0x00100000l /* Hide flags are active */
|
||||
#define JOYTYPE_INFOMASK 0x00E00000l /* Mask for type specific info */
|
||||
#define JOYTYPE_INFODEFAULT 0x00000000l /* Use default axis mappings */
|
||||
#define JOYTYPE_INFOYYPEDALS 0x00200000l /* Use Y as a combined pedals axis */
|
||||
#define JOYTYPE_INFOZYPEDALS 0x00400000l /* Use Z for accelerate, Y for brake */
|
||||
#define JOYTYPE_INFOYRPEDALS 0x00600000l /* Use Y for accelerate, R for brake */
|
||||
#define JOYTYPE_INFOZRPEDALS 0x00800000l /* Use Z for accelerate, R for brake */
|
||||
#define JOYTYPE_INFOZISSLIDER 0x00200000l /* Use Z as a slider */
|
||||
#define JOYTYPE_INFOZISZ 0x00400000l /* Use Z as Z axis */
|
||||
|
||||
/* struct for storing x,y, z, and rudder values */
|
||||
typedef struct joypos_tag {
|
||||
DWORD dwX;
|
||||
@ -345,6 +362,9 @@ typedef BOOL (FAR PASCAL * LPDIJOYTYPECALLBACK)(LPCWSTR, LPVOID);
|
||||
#define DITC_CALLOUT 0x00000008
|
||||
#define DITC_HARDWAREID 0x00000010
|
||||
#define DITC_FLAGS1 0x00000020
|
||||
#define DITC_FLAGS2 0x00000040
|
||||
#define DITC_MAPFILE 0x00000080
|
||||
|
||||
|
||||
|
||||
/* This structure is defined for DirectX 5.0 compatibility */
|
||||
@ -358,6 +378,18 @@ typedef struct DIJOYTYPEINFO_DX5 {
|
||||
} DIJOYTYPEINFO_DX5, *LPDIJOYTYPEINFO_DX5;
|
||||
typedef const DIJOYTYPEINFO_DX5 *LPCDIJOYTYPEINFO_DX5;
|
||||
|
||||
/* This structure is defined for DirectX 6.1 compatibility */
|
||||
typedef struct DIJOYTYPEINFO_DX6 {
|
||||
DWORD dwSize;
|
||||
JOYREGHWSETTINGS hws;
|
||||
CLSID clsidConfig;
|
||||
WCHAR wszDisplayName[MAX_JOYSTRING];
|
||||
WCHAR wszCallout[MAX_JOYSTICKOEMVXDNAME];
|
||||
WCHAR wszHardwareId[MAX_JOYSTRING];
|
||||
DWORD dwFlags1;
|
||||
} DIJOYTYPEINFO_DX6, *LPDIJOYTYPEINFO_DX6;
|
||||
typedef const DIJOYTYPEINFO_DX6 *LPCDIJOYTYPEINFO_DX6;
|
||||
|
||||
typedef struct DIJOYTYPEINFO {
|
||||
DWORD dwSize;
|
||||
JOYREGHWSETTINGS hws;
|
||||
@ -367,10 +399,13 @@ typedef struct DIJOYTYPEINFO {
|
||||
#if(DIRECTINPUT_VERSION >= 0x05b2)
|
||||
WCHAR wszHardwareId[MAX_JOYSTRING];
|
||||
DWORD dwFlags1;
|
||||
#if(DIRECTINPUT_VERSION >= 0x0800)
|
||||
DWORD dwFlags2;
|
||||
WCHAR wszMapFile[MAX_JOYSTRING];
|
||||
#endif /* DIRECTINPUT_VERSION >= 0x0800 */
|
||||
#endif /* DIRECTINPUT_VERSION >= 0x05b2 */
|
||||
} DIJOYTYPEINFO, *LPDIJOYTYPEINFO;
|
||||
typedef const DIJOYTYPEINFO *LPCDIJOYTYPEINFO;
|
||||
|
||||
#define DIJC_GUIDINSTANCE 0x00000001
|
||||
#define DIJC_REGHWCONFIGTYPE 0x00000002
|
||||
#define DIJC_GAIN 0x00000004
|
||||
@ -495,6 +530,142 @@ typedef struct IDirectInputJoyConfig *LPDIRECTINPUTJOYCONFIG;
|
||||
|
||||
#endif /* DIJ_RINGZERO */
|
||||
|
||||
#if(DIRECTINPUT_VERSION >= 0x0800)
|
||||
|
||||
#ifndef DIJ_RINGZERO
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectInputJoyConfig8
|
||||
|
||||
DECLARE_INTERFACE_(IDirectInputJoyConfig8, IUnknown)
|
||||
{
|
||||
/*** IUnknown methods ***/
|
||||
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID * ppvObj) PURE;
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
|
||||
/*** IDirectInputJoyConfig8 methods ***/
|
||||
STDMETHOD(Acquire)(THIS) PURE;
|
||||
STDMETHOD(Unacquire)(THIS) PURE;
|
||||
STDMETHOD(SetCooperativeLevel)(THIS_ HWND,DWORD) PURE;
|
||||
STDMETHOD(SendNotify)(THIS) PURE;
|
||||
STDMETHOD(EnumTypes)(THIS_ LPDIJOYTYPECALLBACK,LPVOID) PURE;
|
||||
STDMETHOD(GetTypeInfo)(THIS_ LPCWSTR,LPDIJOYTYPEINFO,DWORD) PURE;
|
||||
STDMETHOD(SetTypeInfo)(THIS_ LPCWSTR,LPCDIJOYTYPEINFO,DWORD,LPWSTR) PURE;
|
||||
STDMETHOD(DeleteType)(THIS_ LPCWSTR) PURE;
|
||||
STDMETHOD(GetConfig)(THIS_ UINT,LPDIJOYCONFIG,DWORD) PURE;
|
||||
STDMETHOD(SetConfig)(THIS_ UINT,LPCDIJOYCONFIG,DWORD) PURE;
|
||||
STDMETHOD(DeleteConfig)(THIS_ UINT) PURE;
|
||||
STDMETHOD(GetUserValues)(THIS_ LPDIJOYUSERVALUES,DWORD) PURE;
|
||||
STDMETHOD(SetUserValues)(THIS_ LPCDIJOYUSERVALUES,DWORD) PURE;
|
||||
STDMETHOD(AddNewHardware)(THIS_ HWND,REFGUID) PURE;
|
||||
STDMETHOD(OpenTypeKey)(THIS_ LPCWSTR,DWORD,PHKEY) PURE;
|
||||
STDMETHOD(OpenAppStatusKey)(THIS_ PHKEY) PURE;
|
||||
};
|
||||
|
||||
typedef struct IDirectInputJoyConfig8 *LPDIRECTINPUTJOYCONFIG8;
|
||||
|
||||
#if !defined(__cplusplus) || defined(CINTERFACE)
|
||||
#define IDirectInputJoyConfig8_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
|
||||
#define IDirectInputJoyConfig8_AddRef(p) (p)->lpVtbl->AddRef(p)
|
||||
#define IDirectInputJoyConfig8_Release(p) (p)->lpVtbl->Release(p)
|
||||
#define IDirectInputJoyConfig8_Acquire(p) (p)->lpVtbl->Acquire(p)
|
||||
#define IDirectInputJoyConfig8_Unacquire(p) (p)->lpVtbl->Unacquire(p)
|
||||
#define IDirectInputJoyConfig8_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b)
|
||||
#define IDirectInputJoyConfig8_SendNotify(p) (p)->lpVtbl->SendNotify(p)
|
||||
#define IDirectInputJoyConfig8_EnumTypes(p,a,b) (p)->lpVtbl->EnumTypes(p,a,b)
|
||||
#define IDirectInputJoyConfig8_GetTypeInfo(p,a,b,c) (p)->lpVtbl->GetTypeInfo(p,a,b,c)
|
||||
#define IDirectInputJoyConfig8_SetTypeInfo(p,a,b,c,d) (p)->lpVtbl->SetTypeInfo(p,a,b,c,d)
|
||||
#define IDirectInputJoyConfig8_DeleteType(p,a) (p)->lpVtbl->DeleteType(p,a)
|
||||
#define IDirectInputJoyConfig8_GetConfig(p,a,b,c) (p)->lpVtbl->GetConfig(p,a,b,c)
|
||||
#define IDirectInputJoyConfig8_SetConfig(p,a,b,c) (p)->lpVtbl->SetConfig(p,a,b,c)
|
||||
#define IDirectInputJoyConfig8_DeleteConfig(p,a) (p)->lpVtbl->DeleteConfig(p,a)
|
||||
#define IDirectInputJoyConfig8_GetUserValues(p,a,b) (p)->lpVtbl->GetUserValues(p,a,b)
|
||||
#define IDirectInputJoyConfig8_SetUserValues(p,a,b) (p)->lpVtbl->SetUserValues(p,a,b)
|
||||
#define IDirectInputJoyConfig8_AddNewHardware(p,a,b) (p)->lpVtbl->AddNewHardware(p,a,b)
|
||||
#define IDirectInputJoyConfig8_OpenTypeKey(p,a,b,c) (p)->lpVtbl->OpenTypeKey(p,a,b,c)
|
||||
#define IDirectInputJoyConfig8_OpenAppStatusKey(p,a) (p)->lpVtbl->OpenAppStatusKey(p,a)
|
||||
#else
|
||||
#define IDirectInputJoyConfig8_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
|
||||
#define IDirectInputJoyConfig8_AddRef(p) (p)->AddRef()
|
||||
#define IDirectInputJoyConfig8_Release(p) (p)->Release()
|
||||
#define IDirectInputJoyConfig8_Acquire(p) (p)->Acquire()
|
||||
#define IDirectInputJoyConfig8_Unacquire(p) (p)->Unacquire()
|
||||
#define IDirectInputJoyConfig8_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b)
|
||||
#define IDirectInputJoyConfig8_SendNotify(p) (p)->SendNotify()
|
||||
#define IDirectInputJoyConfig8_EnumTypes(p,a,b) (p)->EnumTypes(a,b)
|
||||
#define IDirectInputJoyConfig8_GetTypeInfo(p,a,b,c) (p)->GetTypeInfo(a,b,c)
|
||||
#define IDirectInputJoyConfig8_SetTypeInfo(p,a,b,c,d) (p)->SetTypeInfo(a,b,c,d)
|
||||
#define IDirectInputJoyConfig8_DeleteType(p,a) (p)->DeleteType(a)
|
||||
#define IDirectInputJoyConfig8_GetConfig(p,a,b,c) (p)->GetConfig(a,b,c)
|
||||
#define IDirectInputJoyConfig8_SetConfig(p,a,b,c) (p)->SetConfig(a,b,c)
|
||||
#define IDirectInputJoyConfig8_DeleteConfig(p,a) (p)->DeleteConfig(a)
|
||||
#define IDirectInputJoyConfig8_GetUserValues(p,a,b) (p)->GetUserValues(a,b)
|
||||
#define IDirectInputJoyConfig8_SetUserValues(p,a,b) (p)->SetUserValues(a,b)
|
||||
#define IDirectInputJoyConfig8_AddNewHardware(p,a,b) (p)->AddNewHardware(a,b)
|
||||
#define IDirectInputJoyConfig8_OpenTypeKey(p,a,b,c) (p)->OpenTypeKey(a,b,c)
|
||||
#define IDirectInputJoyConfig8_OpenAppStatusKey(p,a) (p)->OpenAppStatusKey(a)
|
||||
#endif
|
||||
|
||||
#endif /* DIJ_RINGZERO */
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* Notification Messages
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/* RegisterWindowMessage with this to get DirectInput notification messages */
|
||||
#define DIRECTINPUT_NOTIFICATION_MSGSTRINGA "DIRECTINPUT_NOTIFICATION_MSGSTRING"
|
||||
#define DIRECTINPUT_NOTIFICATION_MSGSTRINGW L"DIRECTINPUT_NOTIFICATION_MSGSTRING"
|
||||
|
||||
#ifdef UNICODE
|
||||
#define DIRECTINPUT_NOTIFICATION_MSGSTRING DIRECTINPUT_NOTIFICATION_MSGSTRINGW
|
||||
#else
|
||||
#define DIRECTINPUT_NOTIFICATION_MSGSTRING DIRECTINPUT_NOTIFICATION_MSGSTRINGA
|
||||
#endif
|
||||
|
||||
#define DIMSGWP_NEWAPPSTART 0x00000001
|
||||
#define DIMSGWP_DX8APPSTART 0x00000002
|
||||
#define DIMSGWP_DX8MAPPERAPPSTART 0x00000003
|
||||
|
||||
#endif /* DIRECTINPUT_VERSION >= 0x0800 */
|
||||
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTAPPA "MostRecentApplication"
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA "MostRecentMapperApplication"
|
||||
#define DIRECTINPUT_REGSTR_VAL_VERSIONA "Version"
|
||||
#define DIRECTINPUT_REGSTR_VAL_NAMEA "Name"
|
||||
#define DIRECTINPUT_REGSTR_VAL_IDA "Id"
|
||||
#define DIRECTINPUT_REGSTR_VAL_MAPPERA "UsesMapper"
|
||||
#define DIRECTINPUT_REGSTR_VAL_LASTSTARTA "MostRecentStart"
|
||||
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTAPPW L"MostRecentApplication"
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW L"MostRecentMapperApplication"
|
||||
#define DIRECTINPUT_REGSTR_VAL_VERSIONW L"Version"
|
||||
#define DIRECTINPUT_REGSTR_VAL_NAMEW L"Name"
|
||||
#define DIRECTINPUT_REGSTR_VAL_IDW L"Id"
|
||||
#define DIRECTINPUT_REGSTR_VAL_MAPPERW L"UsesMapper"
|
||||
#define DIRECTINPUT_REGSTR_VAL_LASTSTARTW L"MostRecentStart"
|
||||
|
||||
#ifdef UNICODE
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTAPP DIRECTINPUT_REGSTR_KEY_LASTAPPW
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPP DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW
|
||||
#define DIRECTINPUT_REGSTR_VAL_VERSION DIRECTINPUT_REGSTR_VAL_VERSIONW
|
||||
#define DIRECTINPUT_REGSTR_VAL_NAME DIRECTINPUT_REGSTR_VAL_NAMEW
|
||||
#define DIRECTINPUT_REGSTR_VAL_ID DIRECTINPUT_REGSTR_VAL_IDW
|
||||
#define DIRECTINPUT_REGSTR_VAL_MAPPER DIRECTINPUT_REGSTR_VAL_MAPPERW
|
||||
#define DIRECTINPUT_REGSTR_VAL_LASTSTART DIRECTINPUT_REGSTR_VAL_LASTSTARTW
|
||||
#else
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTAPP DIRECTINPUT_REGSTR_KEY_LASTAPPA
|
||||
#define DIRECTINPUT_REGSTR_KEY_LASTMAPAPP DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA
|
||||
#define DIRECTINPUT_REGSTR_VAL_VERSION DIRECTINPUT_REGSTR_VAL_VERSIONA
|
||||
#define DIRECTINPUT_REGSTR_VAL_NAME DIRECTINPUT_REGSTR_VAL_NAMEA
|
||||
#define DIRECTINPUT_REGSTR_VAL_ID DIRECTINPUT_REGSTR_VAL_IDA
|
||||
#define DIRECTINPUT_REGSTR_VAL_MAPPER DIRECTINPUT_REGSTR_VAL_MAPPERA
|
||||
#define DIRECTINPUT_REGSTR_VAL_LASTSTART DIRECTINPUT_REGSTR_VAL_LASTSTARTA
|
||||
#endif
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* Return Codes
|
||||
@ -507,9 +678,28 @@ typedef struct IDirectInputJoyConfig *LPDIRECTINPUTJOYCONFIG;
|
||||
/*
|
||||
* Device driver-specific codes.
|
||||
*/
|
||||
|
||||
#define DIERR_DRIVERFIRST 0x80040300L
|
||||
#define DIERR_DRIVERLAST 0x800403FFL
|
||||
|
||||
/*
|
||||
* Unless the specific driver has been precisely identified, no meaning
|
||||
* should be attributed to these values other than that the driver
|
||||
* originated the error. However, to illustrate the types of error that
|
||||
* may be causing the failure, the PID force feedback driver distributed
|
||||
* with DirectX 7 could return the following errors:
|
||||
*
|
||||
* DIERR_DRIVERFIRST + 1
|
||||
* The requested usage was not found.
|
||||
* DIERR_DRIVERFIRST + 2
|
||||
* The parameter block couldn't be downloaded to the device.
|
||||
* DIERR_DRIVERFIRST + 3
|
||||
* PID initialization failed.
|
||||
* DIERR_DRIVERFIRST + 4
|
||||
* The provided values couldn't be scaled.
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Device installer errors.
|
||||
*/
|
||||
@ -531,31 +721,16 @@ typedef struct IDirectInputJoyConfig *LPDIRECTINPUTJOYCONFIG;
|
||||
*/
|
||||
#define DIERR_BADINF 0x80040402L
|
||||
|
||||
/*
|
||||
* Device-specific errors for USB/PID force feedback devices.
|
||||
*/
|
||||
/****************************************************************************
|
||||
*
|
||||
* Map files
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/*
|
||||
* The requested usage was not found.
|
||||
* Delete particular data from default map file.
|
||||
*/
|
||||
#define DIERR_PID_USAGENOTFOUND DIERR_DRIVERFIRST + 1
|
||||
|
||||
/*
|
||||
* The parameter block couldn't be downloaded to the device.
|
||||
*/
|
||||
#define DIERR_PID_BLOCKLOADERROR DIERR_DRIVERFIRST + 2
|
||||
|
||||
/*
|
||||
* PID initialization failed.
|
||||
*/
|
||||
#define DIERR_PID_NOTINITIALIZED DIERR_DRIVERFIRST + 3
|
||||
|
||||
/*
|
||||
* The provided values couldn't be scaled.
|
||||
*/
|
||||
#define DIERR_PID_INVALIDSCALING DIERR_DRIVERFIRST + 4
|
||||
|
||||
|
||||
#define DIDIFT_DELETE 0x01000000
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
|
@ -1,112 +1,120 @@
|
||||
/*
|
||||
|
||||
dls2.h
|
||||
|
||||
Description:
|
||||
|
||||
Interface defines and structures for the DLS2 extensions of DLS.
|
||||
|
||||
|
||||
Written by Microsoft 1998. Released for public use.
|
||||
|
||||
|
||||
dls2.h
|
||||
|
||||
Description:
|
||||
|
||||
Interface defines and structures for the DLS2 extensions of DLS.
|
||||
|
||||
|
||||
Written by Microsoft 1998. Released for public use.
|
||||
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _INC_DLS2
|
||||
#define _INC_DLS2
|
||||
|
||||
|
||||
/*
|
||||
FOURCC's used in the DLS2 file, in addition to DLS1 chunks
|
||||
FOURCC's used in the DLS2 file, in addition to DLS1 chunks
|
||||
*/
|
||||
|
||||
|
||||
#define FOURCC_RGN2 mmioFOURCC('r','g','n','2')
|
||||
#define FOURCC_LAR2 mmioFOURCC('l','a','r','2')
|
||||
#define FOURCC_ART2 mmioFOURCC('a','r','t','2')
|
||||
#define FOURCC_CDL mmioFOURCC('c','d','l',' ')
|
||||
#define FOURCC_DLID mmioFOURCC('d','l','i','d')
|
||||
|
||||
#define FOURCC_DLID mmioFOURCC('d','l','i','d')
|
||||
|
||||
/*
|
||||
Articulation connection graph definitions. These are in addition to
|
||||
the definitions in the DLS1 header.
|
||||
Articulation connection graph definitions. These are in addition to
|
||||
the definitions in the DLS1 header.
|
||||
*/
|
||||
|
||||
|
||||
/* Generic Sources (in addition to DLS1 sources. */
|
||||
#define CONN_SRC_POLYPRESSURE 0x0007 /* Polyphonic Pressure */
|
||||
#define CONN_SRC_CHANNELPRESSURE 0x0008 /* Channel Pressure */
|
||||
#define CONN_SRC_CHANNELPRESSURE 0x0008 /* Channel Pressure */
|
||||
#define CONN_SRC_VIBRATO 0x0009 /* Vibrato LFO */
|
||||
#define CONN_SRC_MONOPRESSURE 0x000a /* MIDI Mono pressure */
|
||||
|
||||
|
||||
#define CONN_SRC_MONOPRESSURE 0x000a /* MIDI Mono pressure */
|
||||
|
||||
|
||||
/* Midi Controllers */
|
||||
#define CONN_SRC_CC91 0x00db /* Reverb Send */
|
||||
#define CONN_SRC_CC93 0x00dd /* Chorus Send */
|
||||
|
||||
|
||||
#define CONN_SRC_CC91 0x00db /* Reverb Send */
|
||||
#define CONN_SRC_CC93 0x00dd /* Chorus Send */
|
||||
|
||||
|
||||
/* Generic Destinations */
|
||||
#define CONN_DST_GAIN 0x0001 /* Same as CONN_DST_ ATTENUATION */
|
||||
#define CONN_DST_KEYNUMBER 0x0005 /* Key Number Generator */
|
||||
|
||||
#define CONN_DST_GAIN 0x0001 /* Same as CONN_DST_ ATTENUATION, but more appropriate terminology. */
|
||||
#define CONN_DST_KEYNUMBER 0x0005 /* Key Number Generator */
|
||||
|
||||
/* Audio Channel Output Destinations */
|
||||
#define CONN_DST_LEFT 0x0010 /* Left Channel Send */
|
||||
#define CONN_DST_RIGHT 0x0011 /* Right Channel Send */
|
||||
#define CONN_DST_LEFT 0x0010 /* Left Channel Send */
|
||||
#define CONN_DST_RIGHT 0x0011 /* Right Channel Send */
|
||||
#define CONN_DST_CENTER 0x0012 /* Center Channel Send */
|
||||
#define CONN_DST_LEFTREAR 0x0013 /* Left Rear Channel Send */
|
||||
#define CONN_DST_RIGHTREAR 0x0014 /* Right Rear Channel Send */
|
||||
#define CONN_DST_LFE_CHANNEL 0x0015 /* LFE Channel Send */
|
||||
#define CONN_DST_CHORUS 0x0080 /* Chorus Send */
|
||||
#define CONN_DST_REVERB 0x0081 /* Reverb Send */
|
||||
|
||||
|
||||
/* Vibrato LFO Destinations */
|
||||
#define CONN_DST_VIB_FREQUENCY 0x0114 /* Vibrato Frequency */
|
||||
#define CONN_DST_VIB_STARTDELAY 0x0115 /* Vibrato Start Delay */
|
||||
|
||||
#define CONN_DST_VIB_STARTDELAY 0x0115 /* Vibrato Start Delay */
|
||||
|
||||
/* EG1 Destinations */
|
||||
#define CONN_DST_EG1_DELAYTIME 0x020B /* EG1 Delay Time */
|
||||
#define CONN_DST_EG1_HOLDTIME 0x020C /* EG1 Hold Time */
|
||||
|
||||
|
||||
#define CONN_DST_EG1_SHUTDOWNTIME 0x020D /* EG1 Shutdown Time */
|
||||
|
||||
|
||||
/* EG2 Destinations */
|
||||
#define CONN_DST_EG2_DELAYTIME 0x030F /* EG2 Delay Time */
|
||||
#define CONN_DST_EG2_HOLDTIME 0x0310 /* EG2 Hold Time */
|
||||
|
||||
|
||||
|
||||
|
||||
/* Filter Destinations */
|
||||
#define CONN_DST_FILTER_CUTOFF 0x0500 /* Filter Cutoff Frequency */
|
||||
#define CONN_DST_FILTER_Q 0x0501 /* Filter Resonance */
|
||||
|
||||
|
||||
|
||||
|
||||
/* Transforms */
|
||||
#define CONN_TRN_CONVEX 0x0002 /* Convex Transform */
|
||||
#define CONN_TRN_SWITCH 0x0003 /* Switch Transform */
|
||||
|
||||
|
||||
|
||||
|
||||
/* Conditional chunk operators */
|
||||
#define DLS_CDL_AND 0x0001 /* X = X & Y */
|
||||
#define DLS_CDL_OR 0x0002 /* X = X | Y */
|
||||
#define DLS_CDL_XOR 0x0003 /* X = X ^ Y */
|
||||
#define DLS_CDL_ADD 0x0004 /* X = X + Y */
|
||||
#define DLS_CDL_SUBTRACT 0x0005 /* X = X - Y */
|
||||
#define DLS_CDL_MULTIPLY 0x0006 /* X = X * Y */
|
||||
#define DLS_CDL_DIVIDE 0x0007 /* X = X / Y */
|
||||
#define DLS_CDL_LOGICAL_AND 0x0008 /* X = X && Y */
|
||||
#define DLS_CDL_LOGICAL_OR 0x0009 /* X = X || Y */
|
||||
#define DLS_CDL_LT 0x000A /* X = (X < Y) */
|
||||
#define DLS_CDL_LE 0x000B /* X = (X <= Y) */
|
||||
#define DLS_CDL_GT 0x000C /* X = (X > Y) */
|
||||
#define DLS_CDL_GE 0x000D /* X = (X >= Y) */
|
||||
#define DLS_CDL_EQ 0x000E /* X = (X == Y) */
|
||||
#define DLS_CDL_NOT 0x000F /* X = !X */
|
||||
#define DLS_CDL_CONST 0x0010 /* 32-bit constant */
|
||||
#define DLS_CDL_QUERY 0x0011 /* 32-bit value returned from query */
|
||||
#define DLS_CDL_QUERYSUPPORTED 0x0012 /* Test to see if DLSID Query is supported */
|
||||
|
||||
#define DLS_CDL_AND 0x0001 /* X = X & Y */
|
||||
#define DLS_CDL_OR 0x0002 /* X = X | Y */
|
||||
#define DLS_CDL_XOR 0x0003 /* X = X ^ Y */
|
||||
#define DLS_CDL_ADD 0x0004 /* X = X + Y */
|
||||
#define DLS_CDL_SUBTRACT 0x0005 /* X = X - Y */
|
||||
#define DLS_CDL_MULTIPLY 0x0006 /* X = X * Y */
|
||||
#define DLS_CDL_DIVIDE 0x0007 /* X = X / Y */
|
||||
#define DLS_CDL_LOGICAL_AND 0x0008 /* X = X && Y */
|
||||
#define DLS_CDL_LOGICAL_OR 0x0009 /* X = X || Y */
|
||||
#define DLS_CDL_LT 0x000A /* X = (X < Y) */
|
||||
#define DLS_CDL_LE 0x000B /* X = (X <= Y) */
|
||||
#define DLS_CDL_GT 0x000C /* X = (X > Y) */
|
||||
#define DLS_CDL_GE 0x000D /* X = (X >= Y) */
|
||||
#define DLS_CDL_EQ 0x000E /* X = (X == Y) */
|
||||
#define DLS_CDL_NOT 0x000F /* X = !X */
|
||||
#define DLS_CDL_CONST 0x0010 /* 32-bit constant */
|
||||
#define DLS_CDL_QUERY 0x0011 /* 32-bit value returned from query */
|
||||
#define DLS_CDL_QUERYSUPPORTED 0x0012 /* Test to see if query is supported by synth */
|
||||
|
||||
/*
|
||||
Loop and release
|
||||
Loop and release
|
||||
*/
|
||||
|
||||
#define WLOOP_TYPE_RELEASE 2
|
||||
#define WLOOP_TYPE_RELEASE 1
|
||||
|
||||
/*
|
||||
DLSID queries for <cdl-ck>
|
||||
WaveLink chunk <wlnk-ck>
|
||||
*/
|
||||
|
||||
#define F_WAVELINK_MULTICHANNEL 0x0002
|
||||
|
||||
|
||||
/*
|
||||
DLSID queries for <cdl-ck>
|
||||
*/
|
||||
|
||||
DEFINE_GUID(DLSID_GMInHardware, 0x178f2f24, 0xc364, 0x11d1, 0xa7, 0x60, 0x00, 0x00, 0xf8, 0x75, 0xac, 0x12);
|
||||
|
@ -2,7 +2,7 @@
|
||||
* *
|
||||
* dmdls.h -- DLS download definitions for DirectMusic API's *
|
||||
* *
|
||||
* Copyright (c) 1998, Microsoft Corp. All rights reserved. *
|
||||
* Copyright (c) 1998-1999 Microsoft Corporation *
|
||||
* *
|
||||
************************************************************************/
|
||||
|
||||
@ -36,9 +36,15 @@ typedef struct _DMUS_DOWNLOADINFO
|
||||
DWORD cbSize; /* Total size of this memory chunk. */
|
||||
} DMUS_DOWNLOADINFO;
|
||||
|
||||
#define DMUS_DOWNLOADINFO_INSTRUMENT 1
|
||||
#define DMUS_DOWNLOADINFO_WAVE 2
|
||||
#define DMUS_DOWNLOADINFO_INSTRUMENT2 3 /* New version for better DLS2 support. */
|
||||
#define DMUS_DOWNLOADINFO_INSTRUMENT 1
|
||||
#define DMUS_DOWNLOADINFO_WAVE 2
|
||||
#define DMUS_DOWNLOADINFO_INSTRUMENT2 3 /* New version for better DLS2 support. */
|
||||
|
||||
/* Support for oneshot and streaming wave data
|
||||
*/
|
||||
#define DMUS_DOWNLOADINFO_WAVEARTICULATION 4 /* Wave articulation data */
|
||||
#define DMUS_DOWNLOADINFO_STREAMINGWAVE 5 /* One chunk of a streaming */
|
||||
#define DMUS_DOWNLOADINFO_ONESHOTWAVE 6
|
||||
|
||||
#define DMUS_DEFAULT_SIZE_OFFSETTABLE 1
|
||||
|
||||
@ -172,6 +178,22 @@ typedef struct _DMUS_NOTERANGE
|
||||
DWORD dwHighNote; /* Sets the high note for the range of MIDI note events to which the instrument responds.*/
|
||||
} DMUS_NOTERANGE;
|
||||
|
||||
typedef struct _DMUS_WAVEARTDL
|
||||
{
|
||||
ULONG ulDownloadIdIdx; /* Download ID's of each buffer */
|
||||
ULONG ulBus; /* Playback bus */
|
||||
ULONG ulBuffers; /* Buffers */
|
||||
ULONG ulMasterDLId; /* Download ID of master voice of slave group */
|
||||
USHORT usOptions; /* Same as DLS2 region options */
|
||||
} DMUS_WAVEARTDL,
|
||||
*LPDMUS_WAVEARTDL;
|
||||
|
||||
typedef struct _DMUS_WAVEDL
|
||||
{
|
||||
ULONG cbWaveData; /* Bytes of wave data */
|
||||
} DMUS_WAVEDL,
|
||||
*LPDMUS_WAVEDL;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
* *
|
||||
* dmerror.h -- Error code returned by DirectMusic API's *
|
||||
* *
|
||||
* Copyright (c) 1998, Microsoft Corp. All rights reserved. *
|
||||
* Copyright (c) 1998-1999 Microsoft Corporation
|
||||
* *
|
||||
************************************************************************/
|
||||
|
||||
@ -23,15 +23,18 @@
|
||||
/* DMUS_S_PARTIALLOAD
|
||||
*
|
||||
* The object could only load partially. This can happen if some components are
|
||||
* not registered properly, such as embedded tracks and tools.
|
||||
* not registered properly, such as embedded tracks and tools. This can also happen
|
||||
* if some content is missing. For example, if a segment uses a DLS collection that
|
||||
* is not in the loader's current search directory.
|
||||
*/
|
||||
#define DMUS_S_PARTIALLOAD MAKE_DMHRESULTSUCCESS(0x091)
|
||||
|
||||
/* DMUS_S_PARTIALDOWNLOAD
|
||||
*
|
||||
* This code indicates that a band download was only successful in reaching
|
||||
* some, but not all, of the referenced ports. Some samples may not play
|
||||
* correctly.
|
||||
* Return value from IDirectMusicBand::Download() which indicates that
|
||||
* some of the instruments safely downloaded, but others failed. This usually
|
||||
* occurs when some instruments are on PChannels not supported by the performance
|
||||
* or port.
|
||||
*/
|
||||
#define DMUS_S_PARTIALDOWNLOAD MAKE_DMHRESULTSUCCESS(0x092)
|
||||
|
||||
@ -40,7 +43,6 @@
|
||||
* Return value from IDirectMusicTool::ProcessPMsg() which indicates to the
|
||||
* performance that it should cue the PMsg again automatically.
|
||||
*/
|
||||
|
||||
#define DMUS_S_REQUEUE MAKE_DMHRESULTSUCCESS(0x200)
|
||||
|
||||
/* DMUS_S_FREE
|
||||
@ -121,6 +123,13 @@
|
||||
*/
|
||||
#define DMUS_S_NOBUFFERCONTROL MAKE_DMHRESULTSUCCESS(0x215)
|
||||
|
||||
/* DMUS_S_GARBAGE_COLLECTED
|
||||
*
|
||||
* The requested operation was not performed because during CollectGarbage
|
||||
* the loader determined that the object had been released.
|
||||
*/
|
||||
#define DMUS_S_GARBAGE_COLLECTED MAKE_DMHRESULTSUCCESS(0x216)
|
||||
|
||||
/* DMUS_E_DRIVER_FAILED
|
||||
*
|
||||
* An unexpected error was returned from a device driver, indicating
|
||||
@ -521,6 +530,12 @@
|
||||
*/
|
||||
#define DMUS_E_TRACK_NOT_FOUND MAKE_DMHRESULTERROR(0x0166)
|
||||
|
||||
/* DMUS_E_TRACK_NO_CLOCKTIME_SUPPORT
|
||||
*
|
||||
* The track does not support clock time playback or getparam.
|
||||
*/
|
||||
#define DMUS_E_TRACK_NO_CLOCKTIME_SUPPORT MAKE_DMHRESULTERROR(0x0167)
|
||||
|
||||
/* DMUS_E_NO_MASTER_CLOCK
|
||||
*
|
||||
* There is no master clock in the performance. Be sure to call
|
||||
@ -616,13 +631,15 @@
|
||||
*/
|
||||
#define DMUS_E_CANNOT_OPEN_PORT MAKE_DMHRESULTERROR(0x0206)
|
||||
|
||||
/* DMUS_E_CONNOT_CONVERT
|
||||
/* DMUS_E_CANNOT_CONVERT
|
||||
*
|
||||
* A call to MIDIToMusic() or MusicToMIDI() resulted in an error because
|
||||
* the requested conversion could not happen. This usually occurs when the
|
||||
* provided DMUS_CHORD_KEY structure has an invalid chord or scale pattern.
|
||||
*/
|
||||
#define DMUS_E_CONNOT_CONVERT MAKE_DMHRESULTERROR(0x0207)
|
||||
#define DMUS_E_CANNOT_CONVERT MAKE_DMHRESULTERROR(0x0207)
|
||||
/* misspelling in previous versions of DirectX preserved for backward compatibility */
|
||||
#define DMUS_E_CONNOT_CONVERT DMUS_E_CANNOT_CONVERT
|
||||
|
||||
/* DMUS_E_DESCEND_CHUNK_FAIL
|
||||
*
|
||||
@ -631,5 +648,196 @@
|
||||
*/
|
||||
#define DMUS_E_DESCEND_CHUNK_FAIL MAKE_DMHRESULTERROR(0x0210)
|
||||
|
||||
#endif
|
||||
/* DMUS_E_NOT_LOADED
|
||||
*
|
||||
* An attempt to use this object failed because it first needs to
|
||||
* be loaded.
|
||||
*/
|
||||
#define DMUS_E_NOT_LOADED MAKE_DMHRESULTERROR(0x0211)
|
||||
|
||||
/* DMUS_E_SCRIPT_LANGUAGE_INCOMPATIBLE
|
||||
*
|
||||
* The activeX scripting engine for the script's language is not compatible with
|
||||
* DirectMusic.
|
||||
*
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_LANGUAGE_INCOMPATIBLE MAKE_DMHRESULTERROR(0x0213)
|
||||
|
||||
/* DMUS_E_SCRIPT_UNSUPPORTED_VARTYPE
|
||||
*
|
||||
* A varient was used that had a type that is not supported by DirectMusic.
|
||||
*
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_UNSUPPORTED_VARTYPE MAKE_DMHRESULTERROR(0x0214)
|
||||
|
||||
/* DMUS_E_SCRIPT_ERROR_IN_SCRIPT
|
||||
*
|
||||
* An error was encountered while parsing or executing the script.
|
||||
* The pErrorInfo parameter (if supplied) was filled with information about the error.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_ERROR_IN_SCRIPT MAKE_DMHRESULTERROR(0x0215)
|
||||
|
||||
/* DMUS_E_SCRIPT_CANTLOAD_OLEAUT32
|
||||
*
|
||||
* Loading of oleaut32.dll failed. VBScript and other activeX scripting languages
|
||||
* require use of oleaut32.dll. On platforms where oleaut32.dll is not present, only
|
||||
* the DirectMusicScript language, which doesn't require oleaut32.dll can be used.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_CANTLOAD_OLEAUT32 MAKE_DMHRESULTERROR(0x0216)
|
||||
|
||||
/* DMUS_E_SCRIPT_LOADSCRIPT_ERROR
|
||||
*
|
||||
* An error occured while parsing a script loaded using LoadScript. The script that
|
||||
* was loaded contains an error.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_LOADSCRIPT_ERROR MAKE_DMHRESULTERROR(0x0217)
|
||||
|
||||
/* DMUS_E_SCRIPT_INVALID_FILE
|
||||
*
|
||||
* The script file is invalid.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_INVALID_FILE MAKE_DMHRESULTERROR(0x0218)
|
||||
|
||||
/* DMUS_E_INVALID_SCRIPTTRACK
|
||||
*
|
||||
* The file contains an invalid script track.
|
||||
*/
|
||||
#define DMUS_E_INVALID_SCRIPTTRACK MAKE_DMHRESULTERROR(0x0219)
|
||||
|
||||
/* DMUS_E_SCRIPT_VARIABLE_NOT_FOUND
|
||||
*
|
||||
* The script does not contain a variable with the specified name.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_VARIABLE_NOT_FOUND MAKE_DMHRESULTERROR(0x021A)
|
||||
|
||||
/* DMUS_E_SCRIPT_ROUTINE_NOT_FOUND
|
||||
*
|
||||
* The script does not contain a routine with the specified name.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_ROUTINE_NOT_FOUND MAKE_DMHRESULTERROR(0x021B)
|
||||
|
||||
/* DMUS_E_SCRIPT_CONTENT_READONLY
|
||||
*
|
||||
* Scripts variables for content referenced or embedded in a script cannot be set.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_CONTENT_READONLY MAKE_DMHRESULTERROR(0x021C)
|
||||
|
||||
/* DMUS_E_SCRIPT_NOT_A_REFERENCE
|
||||
*
|
||||
* Attempt was made to set a script's variable by reference to a value that was
|
||||
* not an object type.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_NOT_A_REFERENCE MAKE_DMHRESULTERROR(0x021D)
|
||||
|
||||
/* DMUS_E_SCRIPT_VALUE_NOT_SUPPORTED
|
||||
*
|
||||
* Attempt was made to set a script's variable by value to an object that does
|
||||
* not support a default value property.
|
||||
*/
|
||||
#define DMUS_E_SCRIPT_VALUE_NOT_SUPPORTED MAKE_DMHRESULTERROR(0x021E)
|
||||
|
||||
/* DMUS_E_INVALID_SEGMENTTRIGGERTRACK
|
||||
*
|
||||
* The file contains an invalid segment trigger track.
|
||||
*/
|
||||
#define DMUS_E_INVALID_SEGMENTTRIGGERTRACK MAKE_DMHRESULTERROR(0x0220)
|
||||
|
||||
/* DMUS_E_INVALID_LYRICSTRACK
|
||||
*
|
||||
* The file contains an invalid lyrics track.
|
||||
*/
|
||||
#define DMUS_E_INVALID_LYRICSTRACK MAKE_DMHRESULTERROR(0x0221)
|
||||
|
||||
/* DMUS_E_INVALID_PARAMCONTROLTRACK
|
||||
*
|
||||
* The file contains an invalid parameter control track.
|
||||
*/
|
||||
#define DMUS_E_INVALID_PARAMCONTROLTRACK MAKE_DMHRESULTERROR(0x0222)
|
||||
|
||||
/* DMUS_E_AUDIOVBSCRIPT_SYNTAXERROR
|
||||
*
|
||||
* A script written in AudioVBScript could not be read because it contained a statement that
|
||||
* is not allowed by the AudioVBScript language.
|
||||
*/
|
||||
#define DMUS_E_AUDIOVBSCRIPT_SYNTAXERROR MAKE_DMHRESULTERROR(0x0223)
|
||||
|
||||
/* DMUS_E_AUDIOVBSCRIPT_RUNTIMEERROR
|
||||
*
|
||||
* A script routine written in AudioVBScript failed because an invalid operation occurred. For example,
|
||||
* adding the number 3 to a segment object would produce this error. So would attempting to call a routine
|
||||
* that doesn't exist.
|
||||
*/
|
||||
#define DMUS_E_AUDIOVBSCRIPT_RUNTIMEERROR MAKE_DMHRESULTERROR(0x0224)
|
||||
|
||||
/* DMUS_E_AUDIOVBSCRIPT_OPERATIONFAILURE
|
||||
*
|
||||
* A script routine written in AudioVBScript failed because a function outside of a script failed to complete.
|
||||
* For example, a call to PlaySegment that fails to play because of low memory would return this error.
|
||||
*/
|
||||
#define DMUS_E_AUDIOVBSCRIPT_OPERATIONFAILURE MAKE_DMHRESULTERROR(0x0225)
|
||||
|
||||
/* DMUS_E_AUDIOPATHS_NOT_VALID
|
||||
*
|
||||
* The Performance has set up some PChannels using the AssignPChannel command, which
|
||||
* makes it not capable of supporting audio paths.
|
||||
*/
|
||||
#define DMUS_E_AUDIOPATHS_NOT_VALID MAKE_DMHRESULTERROR(0x0226)
|
||||
|
||||
/* DMUS_E_AUDIOPATHS_IN_USE
|
||||
*
|
||||
* This is the inverse of the previous error.
|
||||
* The Performance has set up some audio paths, which makes is incompatible
|
||||
* with the calls to allocate pchannels, etc.
|
||||
*/
|
||||
#define DMUS_E_AUDIOPATHS_IN_USE MAKE_DMHRESULTERROR(0x0227)
|
||||
|
||||
/* DMUS_E_NO_AUDIOPATH_CONFIG
|
||||
*
|
||||
* A segment or song was asked for its embedded audio path configuration,
|
||||
* but there isn't any.
|
||||
*/
|
||||
#define DMUS_E_NO_AUDIOPATH_CONFIG MAKE_DMHRESULTERROR(0x0228)
|
||||
|
||||
/* DMUS_E_AUDIOPATH_INACTIVE
|
||||
*
|
||||
* An audiopath is inactive, perhaps because closedown was called.
|
||||
*/
|
||||
#define DMUS_E_AUDIOPATH_INACTIVE MAKE_DMHRESULTERROR(0x0229)
|
||||
|
||||
/* DMUS_E_AUDIOPATH_NOBUFFER
|
||||
*
|
||||
* An audiopath failed to create because a requested buffer could not be created.
|
||||
*/
|
||||
#define DMUS_E_AUDIOPATH_NOBUFFER MAKE_DMHRESULTERROR(0x022A)
|
||||
|
||||
/* DMUS_E_AUDIOPATH_NOPORT
|
||||
*
|
||||
* An audiopath could not be used for playback because it lacked port assignments.
|
||||
*/
|
||||
#define DMUS_E_AUDIOPATH_NOPORT MAKE_DMHRESULTERROR(0x022B)
|
||||
|
||||
/* DMUS_E_NO_AUDIOPATH
|
||||
*
|
||||
* Attempt was made to play segment in audiopath mode and there was no audiopath.
|
||||
*/
|
||||
#define DMUS_E_NO_AUDIOPATH MAKE_DMHRESULTERROR(0x022C)
|
||||
|
||||
/* DMUS_E_INVALIDCHUNK
|
||||
*
|
||||
* Invalid data was found in a RIFF file chunk.
|
||||
*/
|
||||
#define DMUS_E_INVALIDCHUNK MAKE_DMHRESULTERROR(0x022D)
|
||||
|
||||
/* DMUS_E_AUDIOPATH_NOGLOBALFXBUFFER
|
||||
*
|
||||
* Attempt was made to create an audiopath that sends to a global effects buffer which did not exist.
|
||||
*/
|
||||
#define DMUS_E_AUDIOPATH_NOGLOBALFXBUFFER MAKE_DMHRESULTERROR(0x022E)
|
||||
|
||||
/* DMUS_E_INVALID_CONTAINER_OBJECT
|
||||
*
|
||||
* The file does not contain a valid container object.
|
||||
*/
|
||||
#define DMUS_E_INVALID_CONTAINER_OBJECT MAKE_DMHRESULTERROR(0x022F)
|
||||
|
||||
#endif
|
||||
|
@ -2,7 +2,7 @@
|
||||
* *
|
||||
* dmksctrl.h -- Definition of IKsControl *
|
||||
* *
|
||||
* Copyright (c) 1998, Microsoft Corp. All rights reserved. *
|
||||
* Copyright (c) 1998-1999 Microsoft Corporation
|
||||
* *
|
||||
* *
|
||||
* This header file contains the definition of IKsControl, which *
|
||||
@ -16,7 +16,9 @@
|
||||
#ifndef _DMKSCTRL_
|
||||
#define _DMKSCTRL_
|
||||
|
||||
#if _MSC_VER >= 1200
|
||||
#pragma warning(push)
|
||||
#endif
|
||||
#pragma warning(disable:4201) /* Disable warnings on anonymous unions */
|
||||
|
||||
#include <pshpack8.h>
|
||||
@ -155,7 +157,9 @@ DEFINE_GUID(KSDATAFORMAT_SUBTYPE_DIRECTMUSIC, 0x1a82f8bc, 0x3f8b, 0x11d2, 0xb7,
|
||||
|
||||
#endif
|
||||
|
||||
#if _MSC_VER >= 1200
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
||||
#endif /* _DMKSCTRL */
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
* *
|
||||
* dmusicc.h -- This module defines the DirectMusic core API's *
|
||||
* *
|
||||
* Copyright (c) 1998, Microsoft Corp. All rights reserved. *
|
||||
* Copyright (c) 1998-1999 Microsoft Corporation
|
||||
* *
|
||||
************************************************************************/
|
||||
|
||||
@ -28,11 +28,16 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef ULONGLONG SAMPLE_TIME;
|
||||
typedef ULONGLONG SAMPLE_POSITION;
|
||||
typedef SAMPLE_TIME *LPSAMPLE_TIME;
|
||||
|
||||
#define DMUS_MAX_DESCRIPTION 128
|
||||
#define DMUS_MAX_DRIVER 128
|
||||
|
||||
typedef struct _DMUS_BUFFERDESC *LPDMUS_BUFFERDESC;
|
||||
typedef struct _DMUS_BUFFERDESC{
|
||||
typedef struct _DMUS_BUFFERDESC
|
||||
{
|
||||
DWORD dwSize;
|
||||
DWORD dwFlags;
|
||||
GUID guidBufferFormat;
|
||||
@ -53,20 +58,22 @@ typedef struct _DMUS_BUFFERDESC{
|
||||
|
||||
/* For DMUS_PORTCAPS dwFlags
|
||||
*/
|
||||
#define DMUS_PC_DLS (0x00000001)
|
||||
#define DMUS_PC_EXTERNAL (0x00000002)
|
||||
#define DMUS_PC_SOFTWARESYNTH (0x00000004)
|
||||
#define DMUS_PC_MEMORYSIZEFIXED (0x00000008)
|
||||
#define DMUS_PC_GMINHARDWARE (0x00000010)
|
||||
#define DMUS_PC_GSINHARDWARE (0x00000020)
|
||||
#define DMUS_PC_XGINHARDWARE (0x00000040)
|
||||
#define DMUS_PC_DIRECTSOUND (0x00000080)
|
||||
#define DMUS_PC_SHAREABLE (0x00000100)
|
||||
#define DMUS_PC_DLS2 (0x00000200)
|
||||
#define DMUS_PC_SYSTEMMEMORY (0x7FFFFFFF)
|
||||
#define DMUS_PC_DLS (0x00000001) // Supports DLS downloading and DLS level 1.
|
||||
#define DMUS_PC_EXTERNAL (0x00000002) // External MIDI module.
|
||||
#define DMUS_PC_SOFTWARESYNTH (0x00000004) // Software synthesizer.
|
||||
#define DMUS_PC_MEMORYSIZEFIXED (0x00000008) // Memory size is fixed.
|
||||
#define DMUS_PC_GMINHARDWARE (0x00000010) // GM sound set is built in, no need to download.
|
||||
#define DMUS_PC_GSINHARDWARE (0x00000020) // GS sound set is built in.
|
||||
#define DMUS_PC_XGINHARDWARE (0x00000040) // XG sound set is built in.
|
||||
#define DMUS_PC_DIRECTSOUND (0x00000080) // Connects to DirectSound via a DSound buffer.
|
||||
#define DMUS_PC_SHAREABLE (0x00000100) // Synth can be actively shared by multiple apps at once.
|
||||
#define DMUS_PC_DLS2 (0x00000200) // Supports DLS2 instruments.
|
||||
#define DMUS_PC_AUDIOPATH (0x00000400) // Multiple outputs can be connected to DirectSound for audiopaths.
|
||||
#define DMUS_PC_WAVE (0x00000800) // Supports streaming and one shot waves.
|
||||
|
||||
#define DMUS_PC_SYSTEMMEMORY (0x7FFFFFFF) // Sample memory is system memory.
|
||||
|
||||
|
||||
typedef struct _DMUS_PORTCAPS *LPDMUS_PORTCAPS;
|
||||
typedef struct _DMUS_PORTCAPS
|
||||
{
|
||||
DWORD dwSize;
|
||||
@ -82,6 +89,8 @@ typedef struct _DMUS_PORTCAPS
|
||||
WCHAR wszDescription[DMUS_MAX_DESCRIPTION];
|
||||
} DMUS_PORTCAPS;
|
||||
|
||||
typedef DMUS_PORTCAPS *LPDMUS_PORTCAPS;
|
||||
|
||||
/* Values for DMUS_PORTCAPS dwType. This field indicates the underlying
|
||||
* driver type of the port.
|
||||
*/
|
||||
@ -98,8 +107,8 @@ typedef struct _DMUS_PORTCAPS
|
||||
#define DMUS_PORTPARAMS_SAMPLERATE 0x00000008
|
||||
#define DMUS_PORTPARAMS_EFFECTS 0x00000020
|
||||
#define DMUS_PORTPARAMS_SHARE 0x00000040
|
||||
#define DMUS_PORTPARAMS_FEATURES 0x00000080 /* DirectX 8.0 and above */
|
||||
|
||||
typedef struct _DMUS_PORTPARAMS *LPDMUS_PORTPARAMS;
|
||||
typedef struct _DMUS_PORTPARAMS
|
||||
{
|
||||
DWORD dwSize;
|
||||
@ -110,9 +119,30 @@ typedef struct _DMUS_PORTPARAMS
|
||||
DWORD dwSampleRate;
|
||||
DWORD dwEffectFlags;
|
||||
BOOL fShare;
|
||||
} DMUS_PORTPARAMS;
|
||||
} DMUS_PORTPARAMS7;
|
||||
|
||||
typedef struct _DMUS_PORTPARAMS8
|
||||
{
|
||||
DWORD dwSize;
|
||||
DWORD dwValidParams;
|
||||
DWORD dwVoices;
|
||||
DWORD dwChannelGroups;
|
||||
DWORD dwAudioChannels;
|
||||
DWORD dwSampleRate;
|
||||
DWORD dwEffectFlags;
|
||||
BOOL fShare;
|
||||
DWORD dwFeatures;
|
||||
} DMUS_PORTPARAMS8;
|
||||
|
||||
#define DMUS_PORT_FEATURE_AUDIOPATH 0x00000001 /* Supports audiopath connection to DSound buffers. */
|
||||
#define DMUS_PORT_FEATURE_STREAMING 0x00000002 /* Supports streaming waves through the synth. */
|
||||
|
||||
|
||||
typedef DMUS_PORTPARAMS8 DMUS_PORTPARAMS;
|
||||
typedef DMUS_PORTPARAMS *LPDMUS_PORTPARAMS;
|
||||
|
||||
typedef struct _DMUS_SYNTHSTATS *LPDMUS_SYNTHSTATS;
|
||||
typedef struct _DMUS_SYNTHSTATS8 *LPDMUS_SYNTHSTATS8;
|
||||
typedef struct _DMUS_SYNTHSTATS
|
||||
{
|
||||
DWORD dwSize; /* Size in bytes of the structure */
|
||||
@ -125,6 +155,19 @@ typedef struct _DMUS_SYNTHSTATS
|
||||
long lPeakVolume; /* Decibel level * 100. */
|
||||
} DMUS_SYNTHSTATS;
|
||||
|
||||
typedef struct _DMUS_SYNTHSTATS8
|
||||
{
|
||||
DWORD dwSize; /* Size in bytes of the structure */
|
||||
DWORD dwValidStats; /* Flags indicating which fields below are valid. */
|
||||
DWORD dwVoices; /* Average number of voices playing. */
|
||||
DWORD dwTotalCPU; /* Total CPU usage as percent * 100. */
|
||||
DWORD dwCPUPerVoice; /* CPU per voice as percent * 100. */
|
||||
DWORD dwLostNotes; /* Number of notes lost in 1 second. */
|
||||
DWORD dwFreeMemory; /* Free memory in bytes */
|
||||
long lPeakVolume; /* Decibel level * 100. */
|
||||
DWORD dwSynthMemUse; /* Memory used by synth wave data */
|
||||
} DMUS_SYNTHSTATS8;
|
||||
|
||||
#define DMUS_SYNTHSTATS_VOICES (1 << 0)
|
||||
#define DMUS_SYNTHSTATS_TOTAL_CPU (1 << 1)
|
||||
#define DMUS_SYNTHSTATS_CPU_PER_VOICE (1 << 2)
|
||||
@ -163,32 +206,98 @@ typedef enum
|
||||
DMUS_CLOCK_WAVE = 1
|
||||
} DMUS_CLOCKTYPE;
|
||||
|
||||
typedef struct _DMUS_CLOCKINFO *LPDMUS_CLOCKINFO;
|
||||
typedef struct _DMUS_CLOCKINFO
|
||||
#define DMUS_CLOCKF_GLOBAL 0x00000001
|
||||
|
||||
typedef struct _DMUS_CLOCKINFO7 *LPDMUS_CLOCKINFO7;
|
||||
typedef struct _DMUS_CLOCKINFO7
|
||||
{
|
||||
DWORD dwSize;
|
||||
DMUS_CLOCKTYPE ctType;
|
||||
GUID guidClock; /* Identifies this time source */
|
||||
WCHAR wszDescription[DMUS_MAX_DESCRIPTION];
|
||||
} DMUS_CLOCKINFO;
|
||||
} DMUS_CLOCKINFO7;
|
||||
|
||||
typedef struct _DMUS_CLOCKINFO8 *LPDMUS_CLOCKINFO8;
|
||||
typedef struct _DMUS_CLOCKINFO8
|
||||
{
|
||||
DWORD dwSize;
|
||||
DMUS_CLOCKTYPE ctType;
|
||||
GUID guidClock; /* Identifies this time source */
|
||||
WCHAR wszDescription[DMUS_MAX_DESCRIPTION];
|
||||
DWORD dwFlags;
|
||||
} DMUS_CLOCKINFO8;
|
||||
|
||||
typedef DMUS_CLOCKINFO8 DMUS_CLOCKINFO;
|
||||
typedef DMUS_CLOCKINFO *LPDMUS_CLOCKINFO;
|
||||
|
||||
/* Default bus identifiers
|
||||
*
|
||||
* The first 17 are direct mappings to the destinations defined in both
|
||||
* the MMA DLS Level 2 specification and the Microsoft Multi-Channel audio
|
||||
* specification.
|
||||
*/
|
||||
#define DSBUSID_FIRST_SPKR_LOC 0
|
||||
#define DSBUSID_FRONT_LEFT 0
|
||||
#define DSBUSID_LEFT 0 /* Front left is also just left */
|
||||
#define DSBUSID_FRONT_RIGHT 1
|
||||
#define DSBUSID_RIGHT 1 /* Ditto front right */
|
||||
#define DSBUSID_FRONT_CENTER 2
|
||||
#define DSBUSID_LOW_FREQUENCY 3
|
||||
#define DSBUSID_BACK_LEFT 4
|
||||
#define DSBUSID_BACK_RIGHT 5
|
||||
#define DSBUSID_FRONT_LEFT_OF_CENTER 6
|
||||
#define DSBUSID_FRONT_RIGHT_OF_CENTER 7
|
||||
#define DSBUSID_BACK_CENTER 8
|
||||
#define DSBUSID_SIDE_LEFT 9
|
||||
#define DSBUSID_SIDE_RIGHT 10
|
||||
#define DSBUSID_TOP_CENTER 11
|
||||
#define DSBUSID_TOP_FRONT_LEFT 12
|
||||
#define DSBUSID_TOP_FRONT_CENTER 13
|
||||
#define DSBUSID_TOP_FRONT_RIGHT 14
|
||||
#define DSBUSID_TOP_BACK_LEFT 15
|
||||
#define DSBUSID_TOP_BACK_CENTER 16
|
||||
#define DSBUSID_TOP_BACK_RIGHT 17
|
||||
#define DSBUSID_LAST_SPKR_LOC 17
|
||||
|
||||
#define DSBUSID_IS_SPKR_LOC(id) ( ((id) >= DSBUSID_FIRST_SPKR_LOC) && ((id) <= DSBUSID_LAST_SPKR_LOC) )
|
||||
|
||||
/* These bus identifiers are for the standard DLS effect sends
|
||||
*/
|
||||
#define DSBUSID_REVERB_SEND 64
|
||||
#define DSBUSID_CHORUS_SEND 65
|
||||
|
||||
/* Dynamic bus identifiers start here. See the documentation for how
|
||||
* synthesizers map the output of voices to static and dynamic
|
||||
* bus identifiers.
|
||||
*/
|
||||
#define DSBUSID_DYNAMIC_0 512
|
||||
|
||||
/* Null bus, used to identify busses that have no function mapping.
|
||||
*/
|
||||
#define DSBUSID_NULL 0xFFFFFFFF
|
||||
|
||||
interface IDirectMusic;
|
||||
interface IDirectMusic8;
|
||||
interface IDirectMusicBuffer;
|
||||
interface IDirectMusicPort;
|
||||
interface IDirectMusicThru;
|
||||
interface IReferenceClock;
|
||||
|
||||
#ifndef __cplusplus
|
||||
|
||||
typedef interface IDirectMusic IDirectMusic;
|
||||
typedef interface IDirectMusicBuffer IDirectMusicBuffer;
|
||||
typedef interface IDirectMusic8 IDirectMusic8;
|
||||
typedef interface IDirectMusicPort IDirectMusicPort;
|
||||
typedef interface IDirectMusicBuffer IDirectMusicBuffer;
|
||||
typedef interface IDirectMusicThru IDirectMusicThru;
|
||||
typedef interface IReferenceClock IReferenceClock;
|
||||
#endif
|
||||
|
||||
#endif /* C++ */
|
||||
|
||||
typedef IDirectMusic *LPDIRECTMUSIC;
|
||||
typedef IDirectMusicBuffer *LPDIRECTMUSICBUFFER;
|
||||
typedef IDirectMusic8 *LPDIRECTMUSIC8;
|
||||
typedef IDirectMusicPort *LPDIRECTMUSICPORT;
|
||||
typedef IDirectMusicBuffer *LPDIRECTMUSICBUFFER;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusic
|
||||
@ -218,7 +327,39 @@ DECLARE_INTERFACE_(IDirectMusic, IUnknown)
|
||||
STDMETHOD(GetDefaultPort) (THIS_ LPGUID pguidPort) PURE;
|
||||
STDMETHOD(SetDirectSound) (THIS_ LPDIRECTSOUND pDirectSound,
|
||||
HWND hWnd) PURE;
|
||||
|
||||
};
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusic8
|
||||
DECLARE_INTERFACE_(IDirectMusic8, IDirectMusic)
|
||||
{
|
||||
/* IUnknown */
|
||||
STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID FAR *) PURE;
|
||||
STDMETHOD_(ULONG,AddRef) (THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release) (THIS) PURE;
|
||||
|
||||
/* IDirectMusic */
|
||||
STDMETHOD(EnumPort) (THIS_ DWORD dwIndex,
|
||||
LPDMUS_PORTCAPS pPortCaps) PURE;
|
||||
STDMETHOD(CreateMusicBuffer) (THIS_ LPDMUS_BUFFERDESC pBufferDesc,
|
||||
LPDIRECTMUSICBUFFER *ppBuffer,
|
||||
LPUNKNOWN pUnkOuter) PURE;
|
||||
STDMETHOD(CreatePort) (THIS_ REFCLSID rclsidPort,
|
||||
LPDMUS_PORTPARAMS pPortParams,
|
||||
LPDIRECTMUSICPORT *ppPort,
|
||||
LPUNKNOWN pUnkOuter) PURE;
|
||||
STDMETHOD(EnumMasterClock) (THIS_ DWORD dwIndex,
|
||||
LPDMUS_CLOCKINFO lpClockInfo) PURE;
|
||||
STDMETHOD(GetMasterClock) (THIS_ LPGUID pguidClock,
|
||||
IReferenceClock **ppReferenceClock) PURE;
|
||||
STDMETHOD(SetMasterClock) (THIS_ REFGUID rguidClock) PURE;
|
||||
STDMETHOD(Activate) (THIS_ BOOL fEnable) PURE;
|
||||
STDMETHOD(GetDefaultPort) (THIS_ LPGUID pguidPort) PURE;
|
||||
STDMETHOD(SetDirectSound) (THIS_ LPDIRECTSOUND pDirectSound,
|
||||
HWND hWnd) PURE;
|
||||
/* IDirectMusic8 */
|
||||
STDMETHOD(SetExternalMasterClock)
|
||||
(THIS_ IReferenceClock *pClock) PURE;
|
||||
};
|
||||
|
||||
#undef INTERFACE
|
||||
@ -259,6 +400,9 @@ DECLARE_INTERFACE_(IDirectMusicBuffer, IUnknown)
|
||||
STDMETHOD(SetUsedBytes) (THIS_ DWORD cb) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicBuffer IDirectMusicBuffer8;
|
||||
typedef IDirectMusicBuffer8 *LPDIRECTMUSICBUFFER8;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusicInstrument
|
||||
DECLARE_INTERFACE_(IDirectMusicInstrument, IUnknown)
|
||||
@ -273,6 +417,9 @@ DECLARE_INTERFACE_(IDirectMusicInstrument, IUnknown)
|
||||
STDMETHOD(SetPatch) (THIS_ DWORD dwPatch) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicInstrument IDirectMusicInstrument8;
|
||||
typedef IDirectMusicInstrument8 *LPDIRECTMUSICINSTRUMENT8;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusicDownloadedInstrument
|
||||
DECLARE_INTERFACE_(IDirectMusicDownloadedInstrument, IUnknown)
|
||||
@ -286,6 +433,9 @@ DECLARE_INTERFACE_(IDirectMusicDownloadedInstrument, IUnknown)
|
||||
/* None at this time */
|
||||
};
|
||||
|
||||
typedef IDirectMusicDownloadedInstrument IDirectMusicDownloadedInstrument8;
|
||||
typedef IDirectMusicDownloadedInstrument8 *LPDIRECTMUSICDOWNLOADEDINSTRUMENT8;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusicCollection
|
||||
DECLARE_INTERFACE_(IDirectMusicCollection, IUnknown)
|
||||
@ -304,6 +454,9 @@ DECLARE_INTERFACE_(IDirectMusicCollection, IUnknown)
|
||||
DWORD dwNameLen) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicCollection IDirectMusicCollection8;
|
||||
typedef IDirectMusicCollection8 *LPDIRECTMUSICCOLLECTION8;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusicDownload
|
||||
DECLARE_INTERFACE_(IDirectMusicDownload , IUnknown)
|
||||
@ -318,6 +471,9 @@ DECLARE_INTERFACE_(IDirectMusicDownload , IUnknown)
|
||||
DWORD* pdwSize) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicDownload IDirectMusicDownload8;
|
||||
typedef IDirectMusicDownload8 *LPDIRECTMUSICDOWNLOAD8;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusicPortDownload
|
||||
DECLARE_INTERFACE_(IDirectMusicPortDownload, IUnknown)
|
||||
@ -339,6 +495,9 @@ DECLARE_INTERFACE_(IDirectMusicPortDownload, IUnknown)
|
||||
STDMETHOD(Unload) (THIS_ IDirectMusicDownload* pIDMDownload) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicPortDownload IDirectMusicPortDownload8;
|
||||
typedef IDirectMusicPortDownload8 *LPDIRECTMUSICPORTDOWNLOAD8;
|
||||
|
||||
/* Standard values for voice priorities. Numerically higher priorities are higher in priority.
|
||||
* These priorities are used to set the voice priority for all voices on a channel. They are
|
||||
* used in the dwPriority parameter of IDirectMusicPort::GetPriority and returned in the
|
||||
@ -440,6 +599,9 @@ DECLARE_INTERFACE_(IDirectMusicPort, IUnknown)
|
||||
STDMETHOD(GetFormat) (THIS_ LPWAVEFORMATEX pWaveFormatEx, LPDWORD pdwWaveFormatExSize, LPDWORD pdwBufferSize) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicPort IDirectMusicPort8;
|
||||
typedef IDirectMusicPort8 *LPDIRECTMUSICPORT8;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE IDirectMusicThru
|
||||
DECLARE_INTERFACE_(IDirectMusicThru, IUnknown)
|
||||
@ -458,6 +620,9 @@ DECLARE_INTERFACE_(IDirectMusicThru, IUnknown)
|
||||
LPDIRECTMUSICPORT pDestinationPort) PURE;
|
||||
};
|
||||
|
||||
typedef IDirectMusicThru IDirectMusicThru8;
|
||||
typedef IDirectMusicThru8 *LPDIRECTMUSICTHRU8;
|
||||
|
||||
#ifndef __IReferenceClock_INTERFACE_DEFINED__
|
||||
#define __IReferenceClock_INTERFACE_DEFINED__
|
||||
|
||||
@ -510,9 +675,20 @@ DEFINE_GUID(IID_IDirectMusicCollection,0xd2ac287c, 0xb39b, 0x11d1, 0x87, 0x4, 0x
|
||||
DEFINE_GUID(IID_IDirectMusicInstrument,0xd2ac287d, 0xb39b, 0x11d1, 0x87, 0x4, 0x0, 0x60, 0x8, 0x93, 0xb1, 0xbd);
|
||||
DEFINE_GUID(IID_IDirectMusicDownloadedInstrument,0xd2ac287e, 0xb39b, 0x11d1, 0x87, 0x4, 0x0, 0x60, 0x8, 0x93, 0xb1, 0xbd);
|
||||
|
||||
|
||||
/* Alternate interface ID for IID_IDirectMusic, available in DX7 release and after. */
|
||||
DEFINE_GUID(IID_IDirectMusic2,0x6fc2cae1, 0xbc78, 0x11d2, 0xaf, 0xa6, 0x0, 0xaa, 0x0, 0x24, 0xd8, 0xb6);
|
||||
|
||||
DEFINE_GUID(IID_IDirectMusic8,0x2d3629f7,0x813d,0x4939,0x85,0x08,0xf0,0x5c,0x6b,0x75,0xfd,0x97);
|
||||
|
||||
#define IID_IDirectMusicThru8 IID_IDirectMusicThru
|
||||
#define IID_IDirectMusicPortDownload8 IID_IDirectMusicPortDownload
|
||||
#define IID_IDirectMusicDownload8 IID_IDirectMusicDownload
|
||||
#define IID_IDirectMusicCollection8 IID_IDirectMusicCollection
|
||||
#define IID_IDirectMusicInstrument8 IID_IDirectMusicInstrument
|
||||
#define IID_IDirectMusicDownloadedInstrument8 IID_IDirectMusicDownloadedInstrument
|
||||
#define IID_IDirectMusicPort8 IID_IDirectMusicPort
|
||||
|
||||
|
||||
/* Property Query GUID_DMUS_PROP_GM_Hardware - Local GM set, no need to download
|
||||
* Property Query GUID_DMUS_PROP_GS_Hardware - Local GS set, no need to download
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -360,6 +360,21 @@ typedef const DPSESSIONDESC2 FAR *LPCDPSESSIONDESC2;
|
||||
*/
|
||||
#define DPSESSION_OPTIMIZELATENCY 0x00008000
|
||||
|
||||
/*
|
||||
* This flag allows lobby launched games that aren't voice enabled
|
||||
* to get voice capabilities.
|
||||
*/
|
||||
#define DPSESSION_ALLOWVOICERETRO 0x00010000
|
||||
|
||||
/*
|
||||
* This flag supresses transmission of session desc changes.
|
||||
* DPSESSION_NODATAMESSAGES was supposed to do that, but SetSessionDesc
|
||||
* was ignoring the flag and some apps depended on the broken behavior, this
|
||||
* flag allows applications to get the right behaviour without breaking apps depending
|
||||
* on old broken behavior.
|
||||
*/
|
||||
#define DPSESSION_NOSESSIONDESCMESSAGES 0x00020000
|
||||
|
||||
/*
|
||||
* DPNAME
|
||||
* Used to hold the name of a DirectPlay entity
|
||||
@ -1242,8 +1257,6 @@ DECLARE_INTERFACE_( IDirectPlay4, IDirectPlay3 )
|
||||
#define DPENUMSESSIONS_ALL 0x00000002
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Start an asynchronous enum sessions
|
||||
*/
|
||||
@ -1322,7 +1335,6 @@ DECLARE_INTERFACE_( IDirectPlay4, IDirectPlay3 )
|
||||
#define DPOPEN_RETURNSTATUS DPENUMSESSIONS_RETURNSTATUS
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* DPLCONNECTION flags
|
||||
@ -2124,9 +2136,6 @@ DEFINE_GUID(IID_IDirectPlay, 0x5454e9a0, 0xdb65, 0x11ce, 0x92, 0x1c, 0x00, 0xaa,
|
||||
|
||||
#endif // IDirectPlay interface macros
|
||||
|
||||
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
@ -2134,3 +2143,4 @@ DEFINE_GUID(IID_IDirectPlay, 0x5454e9a0, 0xdb65, 0x11ce, 0x92, 0x1c, 0x00, 0xaa,
|
||||
#pragma warning(default:4201)
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -405,6 +405,34 @@ DECLARE_INTERFACE_( IDirectPlayLobby3, IDirectPlayLobby )
|
||||
*/
|
||||
#define DPLMSG_STANDARD 0x00000002
|
||||
|
||||
/*
|
||||
* Lobbyable Application registration flags
|
||||
*/
|
||||
|
||||
/*
|
||||
* Applications registered with this flag will not show up when
|
||||
* applications are enumerated in the lobby. This application
|
||||
* will only be able to be launched by a lobby client that already
|
||||
* knows about the application.
|
||||
*/
|
||||
#define DPLAPP_NOENUM 0x80000000
|
||||
|
||||
/*
|
||||
* Applications registered with this flag want voice to automatically
|
||||
* be enabled for their application. All players will be launched into
|
||||
* an 'n'-way voice conference when the application is started. The
|
||||
* user will be able to enable this flag for existing non-voice
|
||||
* directplay applications.
|
||||
*/
|
||||
#define DPLAPP_AUTOVOICE 0x00000001
|
||||
|
||||
/*
|
||||
* Applications that do their own voice conferencing should register with
|
||||
* this flag to avoid allowing the user to enable other voice chat
|
||||
* capabilites during the same session. This is to avoid users forcing
|
||||
* the DPLAPP_AUTOVOICE flag for the application.
|
||||
*/
|
||||
#define DPLAPP_SELFVOICE 0x00000002
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
@ -569,6 +597,10 @@ typedef struct _DPLMSG_NEWSESSIONHOST
|
||||
*/
|
||||
#define DPLSYS_NEWCONNECTIONSETTINGS 0x0000000A
|
||||
|
||||
/*
|
||||
* The Lobby Client has released the DirectPlayLobby Interface
|
||||
*/
|
||||
#define DPLSYS_LOBBYCLIENTRELEASE 0x0000000B
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
@ -818,3 +850,4 @@ DEFINE_GUID(DPAID_ComPort,
|
||||
#pragma warning(default:4201)
|
||||
|
||||
#endif /* __DPLOBBY_INCLUDED__ */
|
||||
|
||||
|
@ -22,11 +22,6 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct _DLSVERSION {
|
||||
DWORD dwVersionMS;
|
||||
DWORD dwVersionLS;
|
||||
} DLSVERSION, FAR * LPDLSVERSION;
|
||||
|
||||
#define FOURCC_VERS mmioFOURCC('v','e','r','s')
|
||||
|
||||
// DSETUP Error Codes, must remain compatible with previous setup.
|
||||
@ -45,7 +40,9 @@ typedef struct _DLSVERSION {
|
||||
#define DSETUPERR_UNKNOWNOS -11
|
||||
#define DSETUPERR_USERHITCANCEL -12
|
||||
#define DSETUPERR_NOTPREINSTALLEDONNT -13
|
||||
#define DSETUPERR_NEWERVERSION -14
|
||||
#define DSETUPERR_NEWERVERSION -14
|
||||
#define DSETUPERR_NOTADMIN -15
|
||||
#define DSETUPERR_UNSUPPORTEDPROCESSOR -16
|
||||
|
||||
// DSETUP flags. DirectX 5.0 apps should use these flags only.
|
||||
#define DSETUP_DDRAWDRV 0x00000008 /* install DirectDraw Drivers */
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -9,6 +9,25 @@
|
||||
|
||||
#ifndef __DVP_INCLUDED__
|
||||
#define __DVP_INCLUDED__
|
||||
|
||||
/*
|
||||
* GUIDS used by DirectDrawVideoPort objects
|
||||
*/
|
||||
#if defined( _WIN32 ) && (!defined( _NO_COM ) || defined( DEFINE_GUID ))
|
||||
DEFINE_GUID( IID_IDDVideoPortContainer, 0x6C142760,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
||||
DEFINE_GUID( IID_IDirectDrawVideoPort, 0xB36D93E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 );
|
||||
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFH_VREFH, 0x54F39980L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFH_VREFL, 0x92783220L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFL_VREFH, 0xA07A02E0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFL_VREFL, 0xE09C77E0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_CCIR656, 0xFCA326A0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_BROOKTREE, 0x1352A560L,0xDA61,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_PHILIPS, 0x332CF160L,0xDA61,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
#endif
|
||||
|
||||
#ifndef GUID_DEFS_ONLY
|
||||
|
||||
#if defined( _WIN32 ) && !defined( _NO_COM )
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include <objbase.h>
|
||||
@ -30,27 +49,6 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* GUIDS used by DirectDrawVideoPort objects
|
||||
*/
|
||||
#if defined( _WIN32 ) && (!defined( _NO_COM ) || defined( DEFINE_GUID ))
|
||||
DEFINE_GUID( IID_IDDVideoPortContainer, 0x6C142760,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
||||
DEFINE_GUID( IID_IDirectDrawVideoPort, 0xB36D93E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 );
|
||||
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFH_VREFH, 0x54F39980L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFH_VREFL, 0x92783220L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFL_VREFH, 0xA07A02E0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_E_HREFL_VREFL, 0xE09C77E0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_CCIR656, 0xFCA326A0L,0xDA60,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_BROOKTREE, 0x1352A560L,0xDA61,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
DEFINE_GUID( DDVPTYPE_PHILIPS, 0x332CF160L,0xDA61,0x11CF,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8);
|
||||
|
||||
/*
|
||||
* GUIDS used to describe connections
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
||||
/*============================================================================
|
||||
*
|
||||
* DirectDraw Structures
|
||||
@ -912,4 +910,7 @@ typedef struct _DDVIDEOPORTSTATUS
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif // GUID_DEFS_ONLY
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -237,3 +237,4 @@ DEFINE_GUID(TID_DXFILEHeader, 0x3d82ab43, 0x62da, 0x11cf, 0xab, 0x39, 0x0, 0x2
|
||||
#endif
|
||||
|
||||
#endif /* _DXFILE_H_ */
|
||||
|
@ -4,12 +4,6 @@ rc = brc32
|
||||
link = ilink32
|
||||
bldlib = tlib
|
||||
cflags = -c -3 -j1 -X -Vd -I$(INCLUDE)
|
||||
cflags = $(cflags) -Dsinf=(FLOAT)sin
|
||||
cflags = $(cflags) -Dcosf=(FLOAT)cos
|
||||
cflags = $(cflags) -Dasinf=(FLOAT)asin
|
||||
cflags = $(cflags) -Dacosf=(FLOAT)acos
|
||||
cflags = $(cflags) -Dsqrtf=(FLOAT)sqrt
|
||||
cflags = $(cflags) -Dexpf=(FLOAT)exp
|
||||
rcflags = -r -fo
|
||||
linkflags = -n -V4.0 -aa
|
||||
!IFDEF main
|
||||
@ -55,12 +49,6 @@ link = link
|
||||
bldlib = lib
|
||||
deflibs = kernel32.lib gdi32.lib user32.lib advapi32.lib gdi32.lib comdlg32.lib winspool.lib shell32.lib winmm.lib comctl32.lib ole32.lib oleaut32.lib
|
||||
cflags = -c /D "WIN32" /D "_WINDOWS"
|
||||
cflags = $(cflags) -Dsinf=sin
|
||||
cflags = $(cflags) -Dcosf=cos
|
||||
cflags = $(cflags) -Dasinf=asin
|
||||
cflags = $(cflags) -Dacosf=acos
|
||||
cflags = $(cflags) -Dsqrtf=sqrt
|
||||
cflags = $(cflags) -Dexpf=exp
|
||||
!IFDEF NODEBUG
|
||||
cflags =$(cflags) /D "NDEBUG"
|
||||
cdebug = -Ox
|
||||
|
@ -58,16 +58,39 @@ typedef struct tagMONITORINFO
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
typedef struct tagMONITORINFOEX : public tagMONITORINFO
|
||||
typedef struct tagMONITORINFOEXA : public tagMONITORINFO
|
||||
{
|
||||
TCHAR szDevice[CCHDEVICENAME];
|
||||
} MONITORINFOEX, *LPMONITORINFOEX;
|
||||
CHAR szDevice[CCHDEVICENAME];
|
||||
} MONITORINFOEXA, *LPMONITORINFOEXA;
|
||||
typedef struct tagMONITORINFOEXW : public tagMONITORINFO
|
||||
{
|
||||
WCHAR szDevice[CCHDEVICENAME];
|
||||
} MONITORINFOEXW, *LPMONITORINFOEXW;
|
||||
#ifdef UNICODE
|
||||
typedef MONITORINFOEXW MONITORINFOEX;
|
||||
typedef LPMONITORINFOEXW LPMONITORINFOEX;
|
||||
#else
|
||||
typedef struct
|
||||
typedef MONITORINFOEXA MONITORINFOEX;
|
||||
typedef LPMONITORINFOEXA LPMONITORINFOEX;
|
||||
#endif // UNICODE
|
||||
#else // ndef __cplusplus
|
||||
typedef struct tagMONITORINFOEXA
|
||||
{
|
||||
MONITORINFO;
|
||||
TCHAR szDevice[CCHDEVICENAME];
|
||||
} MONITORINFOEX, *LPMONITORINFOEX;
|
||||
CHAR szDevice[CCHDEVICENAME];
|
||||
} MONITORINFOEXA, *LPMONITORINFOEXA;
|
||||
typedef struct tagMONITORINFOEXW
|
||||
{
|
||||
MONITORINFO;
|
||||
WCHAR szDevice[CCHDEVICENAME];
|
||||
} MONITORINFOEXW, *LPMONITORINFOEXW;
|
||||
#ifdef UNICODE
|
||||
typedef MONITORINFOEXW MONITORINFOEX;
|
||||
typedef LPMONITORINFOEXW LPMONITORINFOEX;
|
||||
#else
|
||||
typedef MONITORINFOEXA MONITORINFOEX;
|
||||
typedef LPMONITORINFOEXA LPMONITORINFOEX;
|
||||
#endif // UNICODE
|
||||
#endif
|
||||
|
||||
typedef BOOL (CALLBACK* MONITORENUMPROC)(HMONITOR, HDC, LPRECT, LPARAM);
|
||||
@ -134,35 +157,47 @@ int (WINAPI* g_pfnGetSystemMetrics)(int) = NULL;
|
||||
HMONITOR (WINAPI* g_pfnMonitorFromWindow)(HWND, DWORD) = NULL;
|
||||
HMONITOR (WINAPI* g_pfnMonitorFromRect)(LPCRECT, DWORD) = NULL;
|
||||
HMONITOR (WINAPI* g_pfnMonitorFromPoint)(POINT, DWORD) = NULL;
|
||||
BOOL (WINAPI* g_pfnGetMonitorInfoA)(HMONITOR, LPMONITORINFO) = NULL;
|
||||
BOOL (WINAPI* g_pfnGetMonitorInfo)(HMONITOR, LPMONITORINFO) = NULL;
|
||||
BOOL (WINAPI* g_pfnEnumDisplayMonitors)(HDC, LPCRECT, MONITORENUMPROC, LPARAM) = NULL;
|
||||
BOOL (WINAPI* g_pfnEnumDisplayDevices)(PVOID, DWORD, PDISPLAY_DEVICE,DWORD) = NULL;
|
||||
BOOL g_fMultiMonInitDone = FALSE;
|
||||
BOOL g_fMultimonPlatformNT = FALSE;
|
||||
|
||||
#endif
|
||||
|
||||
BOOL IsPlatformNT()
|
||||
{
|
||||
OSVERSIONINFOA osvi = {0};
|
||||
osvi.dwOSVersionInfoSize = sizeof(osvi);
|
||||
GetVersionExA((OSVERSIONINFOA*)&osvi);
|
||||
return (VER_PLATFORM_WIN32_NT == osvi.dwPlatformId);
|
||||
}
|
||||
|
||||
BOOL InitMultipleMonitorStubs(void)
|
||||
{
|
||||
HMODULE hUser32;
|
||||
|
||||
if (g_fMultiMonInitDone)
|
||||
{
|
||||
return g_pfnGetMonitorInfoA != NULL;
|
||||
return g_pfnGetMonitorInfo != NULL;
|
||||
}
|
||||
|
||||
if ((hUser32 = GetModuleHandle(TEXT("USER32"))) &&
|
||||
(*(FARPROC*)&g_pfnGetSystemMetrics = GetProcAddress(hUser32,"GetSystemMetrics")) &&
|
||||
(*(FARPROC*)&g_pfnMonitorFromWindow = GetProcAddress(hUser32,"MonitorFromWindow")) &&
|
||||
(*(FARPROC*)&g_pfnMonitorFromRect = GetProcAddress(hUser32,"MonitorFromRect")) &&
|
||||
(*(FARPROC*)&g_pfnMonitorFromPoint = GetProcAddress(hUser32,"MonitorFromPoint")) &&
|
||||
(*(FARPROC*)&g_pfnEnumDisplayMonitors = GetProcAddress(hUser32,"EnumDisplayMonitors")) &&
|
||||
(*(FARPROC*)&g_pfnGetMonitorInfoA = GetProcAddress(hUser32,"GetMonitorInfoA")) &&
|
||||
g_fMultimonPlatformNT = IsPlatformNT();
|
||||
hUser32 = GetModuleHandle(TEXT("USER32"));
|
||||
if (hUser32 &&
|
||||
(*(FARPROC*)&g_pfnGetSystemMetrics = GetProcAddress(hUser32,"GetSystemMetrics")) != NULL &&
|
||||
(*(FARPROC*)&g_pfnMonitorFromWindow = GetProcAddress(hUser32,"MonitorFromWindow")) != NULL &&
|
||||
(*(FARPROC*)&g_pfnMonitorFromRect = GetProcAddress(hUser32,"MonitorFromRect")) != NULL &&
|
||||
(*(FARPROC*)&g_pfnMonitorFromPoint = GetProcAddress(hUser32,"MonitorFromPoint")) != NULL &&
|
||||
(*(FARPROC*)&g_pfnEnumDisplayMonitors = GetProcAddress(hUser32,"EnumDisplayMonitors")) != NULL &&
|
||||
#ifdef UNICODE
|
||||
(*(FARPROC*)&g_pfnEnumDisplayDevices = GetProcAddress(hUser32,"EnumDisplayDevicesW")) )
|
||||
(*(FARPROC*)&g_pfnEnumDisplayDevices = GetProcAddress(hUser32,"EnumDisplayDevicesW")) != NULL &&
|
||||
(*(FARPROC*)&g_pfnGetMonitorInfo = g_fMultimonPlatformNT ? GetProcAddress(hUser32,"GetMonitorInfoW") :
|
||||
GetProcAddress(hUser32,"GetMonitorInfoA")) != NULL
|
||||
#else
|
||||
(*(FARPROC*)&g_pfnEnumDisplayDevices = GetProcAddress(hUser32,"EnumDisplayDevicesA")) )
|
||||
(*(FARPROC*)&g_pfnGetMonitorInfo = GetProcAddress(hUser32,"GetMonitorInfoA")) != NULL &&
|
||||
(*(FARPROC*)&g_pfnEnumDisplayDevices = GetProcAddress(hUser32,"EnumDisplayDevicesA")) != NULL
|
||||
#endif
|
||||
{
|
||||
) {
|
||||
g_fMultiMonInitDone = TRUE;
|
||||
return TRUE;
|
||||
}
|
||||
@ -172,7 +207,7 @@ BOOL InitMultipleMonitorStubs(void)
|
||||
g_pfnMonitorFromWindow = NULL;
|
||||
g_pfnMonitorFromRect = NULL;
|
||||
g_pfnMonitorFromPoint = NULL;
|
||||
g_pfnGetMonitorInfoA = NULL;
|
||||
g_pfnGetMonitorInfo = NULL;
|
||||
g_pfnEnumDisplayMonitors = NULL;
|
||||
g_pfnEnumDisplayDevices = NULL;
|
||||
|
||||
@ -282,18 +317,13 @@ xGetMonitorInfo(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
|
||||
|
||||
if (InitMultipleMonitorStubs())
|
||||
{
|
||||
BOOL f = g_pfnGetMonitorInfoA(hMonitor, lpMonitorInfo);
|
||||
|
||||
BOOL f = g_pfnGetMonitorInfo(hMonitor, lpMonitorInfo);
|
||||
#ifdef UNICODE
|
||||
if (lpMonitorInfo->cbSize >= sizeof(MONITORINFOEX))
|
||||
{
|
||||
WCHAR szDeviceW[CCHDEVICENAME];
|
||||
|
||||
if (f && !g_fMultimonPlatformNT && (lpMonitorInfo->cbSize >= sizeof(MONITORINFOEX)))
|
||||
{
|
||||
MultiByteToWideChar(CP_ACP, 0,
|
||||
(LPSTR)((MONITORINFOEX*)lpMonitorInfo)->szDevice, -1,
|
||||
szDeviceW, CCHDEVICENAME);
|
||||
|
||||
lstrcpy(((MONITORINFOEX*)lpMonitorInfo)->szDevice, szDeviceW);
|
||||
((MONITORINFOEX*)lpMonitorInfo)->szDevice, (sizeof(((MONITORINFOEX*)lpMonitorInfo)->szDevice)/sizeof(TCHAR)));
|
||||
}
|
||||
#endif
|
||||
return f;
|
||||
@ -312,7 +342,13 @@ xGetMonitorInfo(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
|
||||
lpMonitorInfo->dwFlags = MONITORINFOF_PRIMARY;
|
||||
|
||||
if (lpMonitorInfo->cbSize >= sizeof(MONITORINFOEX))
|
||||
{
|
||||
#ifdef UNICODE
|
||||
MultiByteToWideChar(CP_ACP, 0, "DISPLAY", -1, ((MONITORINFOEX*)lpMonitorInfo)->szDevice, (sizeof(((MONITORINFOEX*)lpMonitorInfo)->szDevice)/sizeof(TCHAR)));
|
||||
#else // UNICODE
|
||||
lstrcpy(((MONITORINFOEX*)lpMonitorInfo)->szDevice, TEXT("DISPLAY"));
|
||||
#endif // UNICODE
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
@ -403,8 +439,14 @@ xEnumDisplayDevices(
|
||||
if (lpDisplayDevice == NULL || lpDisplayDevice->cb < sizeof(DISPLAY_DEVICE))
|
||||
return FALSE;
|
||||
|
||||
lstrcpy((TCHAR *)lpDisplayDevice->DeviceName, TEXT("DISPLAY"));
|
||||
lstrcpy((TCHAR *)lpDisplayDevice->DeviceString, TEXT("DISPLAY"));
|
||||
#ifdef UNICODE
|
||||
MultiByteToWideChar(CP_ACP, 0, "DISPLAY", -1, lpDisplayDevice->DeviceName, (sizeof(lpDisplayDevice->DeviceName)/sizeof(TCHAR)));
|
||||
MultiByteToWideChar(CP_ACP, 0, "DISPLAY", -1, lpDisplayDevice->DeviceString, (sizeof(lpDisplayDevice->DeviceName)/sizeof(TCHAR)));
|
||||
#else // UNICODE
|
||||
lstrcpy((LPTSTR)lpDisplayDevice->DeviceName, TEXT("DISPLAY"));
|
||||
lstrcpy((LPTSTR)lpDisplayDevice->DeviceString, TEXT("DISPLAY"));
|
||||
#endif // UNICODE
|
||||
|
||||
lpDisplayDevice->StateFlags = DISPLAY_DEVICE_ATTACHED_TO_DESKTOP | DISPLAY_DEVICE_PRIMARY_DEVICE;
|
||||
|
||||
return TRUE;
|
||||
|
@ -221,4 +221,3 @@ DEFINE_GUID(TID_D3DRMRightHanded,
|
||||
|
||||
#endif /* __RMXFGUID_H_ */
|
||||
|
||||
|
||||
|
@ -4,337 +4,336 @@
|
||||
#define _RMXFTMPL_H_
|
||||
|
||||
unsigned char D3DRM_XTEMPLATES[] = {
|
||||
0x78, 0x6f, 0x66, 0x20, 0x30, 0x33, 0x30, 0x32, 0x62,
|
||||
0x69, 0x6e, 0x20, 0x30, 0x30, 0x36, 0x34, 0x1f, 0, 0x1,
|
||||
0, 0x6, 0, 0, 0, 0x48, 0x65, 0x61, 0x64, 0x65,
|
||||
0x72, 0xa, 0, 0x5, 0, 0x43, 0xab, 0x82, 0x3d, 0xda,
|
||||
0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4,
|
||||
0x33, 0x28, 0, 0x1, 0, 0x5, 0, 0, 0, 0x6d,
|
||||
0x61, 0x6a, 0x6f, 0x72, 0x14, 0, 0x28, 0, 0x1, 0,
|
||||
0x5, 0, 0, 0, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x14,
|
||||
0, 0x29, 0, 0x1, 0, 0x5, 0, 0, 0, 0x66,
|
||||
0x6c, 0x61, 0x67, 0x73, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, 0x74,
|
||||
0x6f, 0x72, 0xa, 0, 0x5, 0, 0x5e, 0xab, 0x82, 0x3d,
|
||||
0xda, 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71,
|
||||
0xe4, 0x33, 0x2a, 0, 0x1, 0, 0x1, 0, 0, 0,
|
||||
0x78, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0, 0,
|
||||
0, 0x79, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0,
|
||||
0, 0, 0x7a, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1,
|
||||
0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6f, 0x72, 0x64,
|
||||
0x73, 0x32, 0x64, 0xa, 0, 0x5, 0, 0x44, 0x3f, 0xf2,
|
||||
0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x2a, 0, 0x1, 0, 0x1, 0, 0,
|
||||
0, 0x75, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0,
|
||||
0, 0, 0x76, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x4d, 0x61, 0x74, 0x72, 0x69,
|
||||
0x78, 0x34, 0x78, 0x34, 0xa, 0, 0x5, 0, 0x45, 0x3f,
|
||||
0xf2, 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40,
|
||||
0x33, 0x35, 0x94, 0xa3, 0x34, 0, 0x2a, 0, 0x1, 0,
|
||||
0x6, 0, 0, 0, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78,
|
||||
0xe, 0, 0x3, 0, 0x10, 0, 0, 0, 0xf, 0,
|
||||
0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x9, 0,
|
||||
0, 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42,
|
||||
0x41, 0xa, 0, 0x5, 0, 0xe0, 0x44, 0xff, 0x35, 0x7c,
|
||||
0x6c, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94,
|
||||
0xa3, 0x2a, 0, 0x1, 0, 0x3, 0, 0, 0, 0x72,
|
||||
0x65, 0x64, 0x14, 0, 0x2a, 0, 0x1, 0, 0x5, 0,
|
||||
0, 0, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x14, 0, 0x2a,
|
||||
0, 0x1, 0, 0x4, 0, 0, 0, 0x62, 0x6c, 0x75,
|
||||
0x65, 0x14, 0, 0x2a, 0, 0x1, 0, 0x5, 0, 0,
|
||||
0, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x8, 0, 0, 0, 0x43, 0x6f,
|
||||
0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0xa, 0, 0x5, 0,
|
||||
0x81, 0x6e, 0xe1, 0xd3, 0x35, 0x78, 0xcf, 0x11, 0x8f, 0x52,
|
||||
0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x2a, 0, 0x1, 0,
|
||||
0x3, 0, 0, 0, 0x72, 0x65, 0x64, 0x14, 0, 0x2a,
|
||||
0, 0x1, 0, 0x5, 0, 0, 0, 0x67, 0x72, 0x65,
|
||||
0x65, 0x6e, 0x14, 0, 0x2a, 0, 0x1, 0, 0x4, 0,
|
||||
0, 0, 0x62, 0x6c, 0x75, 0x65, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0xc, 0, 0, 0, 0x49, 0x6e,
|
||||
0x64, 0x65, 0x78, 0x65, 0x64, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
|
||||
0xa, 0, 0x5, 0, 0x20, 0xb8, 0x30, 0x16, 0x42, 0x78,
|
||||
0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3,
|
||||
0x29, 0, 0x1, 0, 0x5, 0, 0, 0, 0x69, 0x6e,
|
||||
0x64, 0x65, 0x78, 0x14, 0, 0x1, 0, 0x9, 0, 0,
|
||||
0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0x41,
|
||||
0x1, 0, 0xa, 0, 0, 0, 0x69, 0x6e, 0x64, 0x65,
|
||||
0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x7, 0, 0, 0, 0x42, 0x6f,
|
||||
0x6f, 0x6c, 0x65, 0x61, 0x6e, 0xa, 0, 0x5, 0, 0xa0,
|
||||
0xa6, 0x7d, 0x53, 0x37, 0xca, 0xd0, 0x11, 0x94, 0x1c, 0,
|
||||
0x80, 0xc8, 0xc, 0xfa, 0x7b, 0x29, 0, 0x1, 0, 0x9,
|
||||
0, 0, 0, 0x74, 0x72, 0x75, 0x65, 0x66, 0x61, 0x6c,
|
||||
0x73, 0x65, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0x9, 0, 0, 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61,
|
||||
0x6e, 0x32, 0x64, 0xa, 0, 0x5, 0, 0x63, 0xae, 0x85,
|
||||
0x48, 0xe8, 0x78, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x1, 0, 0x7, 0, 0, 0, 0x42,
|
||||
0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x1, 0, 0x1, 0,
|
||||
0, 0, 0x75, 0x14, 0, 0x1, 0, 0x7, 0, 0,
|
||||
0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x1, 0,
|
||||
0x1, 0, 0, 0, 0x76, 0x14, 0, 0xb, 0, 0x1f,
|
||||
0, 0x1, 0, 0xc, 0, 0, 0, 0x4d, 0x61, 0x74,
|
||||
0x65, 0x72, 0x69, 0x61, 0x6c, 0x57, 0x72, 0x61, 0x70, 0xa,
|
||||
0, 0x5, 0, 0x60, 0xae, 0x85, 0x48, 0xe8, 0x78, 0xcf,
|
||||
0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x1,
|
||||
0, 0x7, 0, 0, 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65,
|
||||
0x61, 0x6e, 0x1, 0, 0x1, 0, 0, 0, 0x75, 0x14,
|
||||
0, 0x1, 0, 0x7, 0, 0, 0, 0x42, 0x6f, 0x6f,
|
||||
0x6c, 0x65, 0x61, 0x6e, 0x1, 0, 0x1, 0, 0, 0,
|
||||
0x76, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0xf,
|
||||
0, 0, 0, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65,
|
||||
0x46, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0xa, 0,
|
||||
0x5, 0, 0xe1, 0x90, 0x27, 0xa4, 0x10, 0x78, 0xcf, 0x11,
|
||||
0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x31, 0,
|
||||
0x1, 0, 0x8, 0, 0, 0, 0x66, 0x69, 0x6c, 0x65,
|
||||
0x6e, 0x61, 0x6d, 0x65, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x8, 0, 0, 0, 0x4d, 0x61, 0x74, 0x65,
|
||||
0x72, 0x69, 0x61, 0x6c, 0xa, 0, 0x5, 0, 0x4d, 0xab,
|
||||
0x82, 0x3d, 0xda, 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20,
|
||||
0xaf, 0x71, 0xe4, 0x33, 0x1, 0, 0x9, 0, 0, 0,
|
||||
0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0x41, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, 0x43,
|
||||
0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0x2a, 0, 0x1, 0,
|
||||
0x5, 0, 0, 0, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x14,
|
||||
0, 0x1, 0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6c,
|
||||
0x6f, 0x72, 0x52, 0x47, 0x42, 0x1, 0, 0xd, 0, 0,
|
||||
0, 0x73, 0x70, 0x65, 0x63, 0x75, 0x6c, 0x61, 0x72, 0x43,
|
||||
0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0x1, 0, 0x8, 0,
|
||||
0, 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42,
|
||||
0x1, 0, 0xd, 0, 0, 0, 0x65, 0x6d, 0x69, 0x73,
|
||||
0x73, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x14,
|
||||
0, 0xe, 0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf,
|
||||
0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x8, 0, 0,
|
||||
0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, 0x63, 0x65, 0xa,
|
||||
0, 0x5, 0, 0x5f, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf,
|
||||
0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0x29,
|
||||
0, 0x1, 0, 0x12, 0, 0, 0, 0x6e, 0x46, 0x61,
|
||||
0x63, 0x65, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x49, 0x6e,
|
||||
0x64, 0x69, 0x63, 0x65, 0x73, 0x14, 0, 0x34, 0, 0x29,
|
||||
0, 0x1, 0, 0x11, 0, 0, 0, 0x66, 0x61, 0x63,
|
||||
0x65, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x49, 0x6e, 0x64,
|
||||
0x69, 0x63, 0x65, 0x73, 0xe, 0, 0x1, 0, 0x12, 0,
|
||||
0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x56, 0x65, 0x72,
|
||||
0x74, 0x65, 0x78, 0x49, 0x6e, 0x64, 0x69, 0x63, 0x65, 0x73,
|
||||
0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0xd, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61,
|
||||
0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x73, 0xa, 0, 0x5,
|
||||
0, 0xc0, 0xc5, 0x1e, 0xed, 0xa8, 0xc0, 0xd0, 0x11, 0x94,
|
||||
0x1c, 0, 0x80, 0xc8, 0xc, 0xfa, 0x7b, 0x29, 0, 0x1,
|
||||
0, 0xf, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65,
|
||||
0x57, 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73,
|
||||
0x14, 0, 0x34, 0, 0x1, 0, 0x9, 0, 0, 0,
|
||||
0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x32, 0x64, 0x1,
|
||||
0, 0xe, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, 0x57,
|
||||
0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0xe,
|
||||
0, 0x1, 0, 0xf, 0, 0, 0, 0x6e, 0x46, 0x61,
|
||||
0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x11, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68,
|
||||
0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, 0x6f,
|
||||
0x72, 0x64, 0x73, 0xa, 0, 0x5, 0, 0x40, 0x3f, 0xf2,
|
||||
0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xe, 0, 0,
|
||||
0, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43,
|
||||
0x6f, 0x6f, 0x72, 0x64, 0x73, 0x14, 0, 0x34, 0, 0x1,
|
||||
0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6f, 0x72, 0x64,
|
||||
0x73, 0x32, 0x64, 0x1, 0, 0xd, 0, 0, 0, 0x74,
|
||||
0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, 0x6f, 0x72,
|
||||
0x64, 0x73, 0xe, 0, 0x1, 0, 0xe, 0, 0, 0,
|
||||
0x6e, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f,
|
||||
0x6f, 0x72, 0x64, 0x73, 0xf, 0, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x10, 0, 0, 0, 0x4d, 0x65,
|
||||
0x73, 0x68, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
|
||||
0x4c, 0x69, 0x73, 0x74, 0xa, 0, 0x5, 0, 0x42, 0x3f,
|
||||
0xf2, 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40,
|
||||
0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xa, 0,
|
||||
0, 0, 0x6e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
|
||||
0x6c, 0x73, 0x14, 0, 0x29, 0, 0x1, 0, 0xc, 0,
|
||||
0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x64,
|
||||
0x65, 0x78, 0x65, 0x73, 0x14, 0, 0x34, 0, 0x29, 0,
|
||||
0x1, 0, 0xb, 0, 0, 0, 0x66, 0x61, 0x63, 0x65,
|
||||
0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0xe, 0, 0x1,
|
||||
0, 0xc, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65,
|
||||
0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0xf, 0, 0x14,
|
||||
0, 0xe, 0, 0x1, 0, 0x8, 0, 0, 0, 0x4d,
|
||||
0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0xf, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xb, 0, 0, 0, 0x4d,
|
||||
0x65, 0x73, 0x68, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73,
|
||||
0xa, 0, 0x5, 0, 0x43, 0x3f, 0xf2, 0xf6, 0x86, 0x76,
|
||||
0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3,
|
||||
0x29, 0, 0x1, 0, 0x8, 0, 0, 0, 0x6e, 0x4e,
|
||||
0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73, 0x14, 0, 0x34, 0,
|
||||
0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, 0x74,
|
||||
0x6f, 0x72, 0x1, 0, 0x7, 0, 0, 0, 0x6e, 0x6f,
|
||||
0x72, 0x6d, 0x61, 0x6c, 0x73, 0xe, 0, 0x1, 0, 0x8,
|
||||
0, 0, 0, 0x6e, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c,
|
||||
0x73, 0xf, 0, 0x14, 0, 0x29, 0, 0x1, 0, 0xc,
|
||||
0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x4e, 0x6f,
|
||||
0x72, 0x6d, 0x61, 0x6c, 0x73, 0x14, 0, 0x34, 0, 0x1,
|
||||
0, 0x8, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46,
|
||||
0x61, 0x63, 0x65, 0x1, 0, 0xb, 0, 0, 0, 0x66,
|
||||
0x61, 0x63, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73,
|
||||
0xe, 0, 0x1, 0, 0xc, 0, 0, 0, 0x6e, 0x46,
|
||||
0x61, 0x63, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73,
|
||||
0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0x10, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x56, 0x65,
|
||||
0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x73,
|
||||
0xa, 0, 0x5, 0, 0x21, 0xb8, 0x30, 0x16, 0x42, 0x78,
|
||||
0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3,
|
||||
0x29, 0, 0x1, 0, 0xd, 0, 0, 0, 0x6e, 0x56,
|
||||
0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
|
||||
0x73, 0x14, 0, 0x34, 0, 0x1, 0, 0xc, 0, 0,
|
||||
0, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x64, 0x43, 0x6f,
|
||||
0x6c, 0x6f, 0x72, 0x1, 0, 0xc, 0, 0, 0, 0x76,
|
||||
0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
|
||||
0x73, 0xe, 0, 0x1, 0, 0xd, 0, 0, 0, 0x6e,
|
||||
0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f,
|
||||
0x72, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x4, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68,
|
||||
0xa, 0, 0x5, 0, 0x44, 0xab, 0x82, 0x3d, 0xda, 0x62,
|
||||
0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33,
|
||||
0x29, 0, 0x1, 0, 0x9, 0, 0, 0, 0x6e, 0x56,
|
||||
0x65, 0x72, 0x74, 0x69, 0x63, 0x65, 0x73, 0x14, 0, 0x34,
|
||||
0, 0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63,
|
||||
0x74, 0x6f, 0x72, 0x1, 0, 0x8, 0, 0, 0, 0x76,
|
||||
0x65, 0x72, 0x74, 0x69, 0x63, 0x65, 0x73, 0xe, 0, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x6e, 0x56, 0x65, 0x72, 0x74,
|
||||
0x69, 0x63, 0x65, 0x73, 0xf, 0, 0x14, 0, 0x29, 0,
|
||||
0x1, 0, 0x6, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63,
|
||||
0x65, 0x73, 0x14, 0, 0x34, 0, 0x1, 0, 0x8, 0,
|
||||
0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, 0x63, 0x65,
|
||||
0x1, 0, 0x5, 0, 0, 0, 0x66, 0x61, 0x63, 0x65,
|
||||
0x73, 0xe, 0, 0x1, 0, 0x6, 0, 0, 0, 0x6e,
|
||||
0x46, 0x61, 0x63, 0x65, 0x73, 0xf, 0, 0x14, 0, 0xe,
|
||||
0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0x14, 0, 0, 0, 0x46,
|
||||
0x72, 0x61, 0x6d, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66,
|
||||
0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0xa,
|
||||
0, 0x5, 0, 0x41, 0x3f, 0xf2, 0xf6, 0x86, 0x76, 0xcf,
|
||||
0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x4d, 0x61, 0x74, 0x72, 0x69,
|
||||
0x78, 0x34, 0x78, 0x34, 0x1, 0, 0xb, 0, 0, 0,
|
||||
0x66, 0x72, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x74, 0x72, 0x69,
|
||||
0x78, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x46, 0x72, 0x61, 0x6d, 0x65, 0xa, 0,
|
||||
0x5, 0, 0x46, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf, 0x11,
|
||||
0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0xe, 0,
|
||||
0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x9, 0, 0, 0, 0x46, 0x6c,
|
||||
0x6f, 0x61, 0x74, 0x4b, 0x65, 0x79, 0x73, 0xa, 0, 0x5,
|
||||
0, 0xa9, 0x46, 0xdd, 0x10, 0x5b, 0x77, 0xcf, 0x11, 0x8f,
|
||||
0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1,
|
||||
0, 0x7, 0, 0, 0, 0x6e, 0x56, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x73, 0x14, 0, 0x34, 0, 0x2a, 0, 0x1, 0,
|
||||
0x6, 0, 0, 0, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73,
|
||||
0xe, 0, 0x1, 0, 0x7, 0, 0, 0, 0x6e, 0x56,
|
||||
0x61, 0x6c, 0x75, 0x65, 0x73, 0xf, 0, 0x14, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xe, 0, 0, 0, 0x54,
|
||||
0x69, 0x6d, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b,
|
||||
0x65, 0x79, 0x73, 0xa, 0, 0x5, 0, 0x80, 0xb1, 0x6,
|
||||
0xf4, 0x3b, 0x7b, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0x4, 0, 0,
|
||||
0, 0x74, 0x69, 0x6d, 0x65, 0x14, 0, 0x1, 0, 0x9,
|
||||
0, 0, 0, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, 0x65,
|
||||
0x79, 0x73, 0x1, 0, 0x6, 0, 0, 0, 0x74, 0x66,
|
||||
0x6b, 0x65, 0x79, 0x73, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0xc, 0, 0, 0, 0x41, 0x6e, 0x69, 0x6d,
|
||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0xa, 0,
|
||||
0x5, 0, 0xa8, 0x46, 0xdd, 0x10, 0x5b, 0x77, 0xcf, 0x11,
|
||||
0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0,
|
||||
0x1, 0, 0x7, 0, 0, 0, 0x6b, 0x65, 0x79, 0x54,
|
||||
0x79, 0x70, 0x65, 0x14, 0, 0x29, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x14, 0,
|
||||
0x34, 0, 0x1, 0, 0xe, 0, 0, 0, 0x54, 0x69,
|
||||
0x6d, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, 0x65,
|
||||
0x79, 0x73, 0x1, 0, 0x4, 0, 0, 0, 0x6b, 0x65,
|
||||
0x79, 0x73, 0xe, 0, 0x1, 0, 0x5, 0, 0, 0,
|
||||
0x6e, 0x4b, 0x65, 0x79, 0x73, 0xf, 0, 0x14, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0x10, 0, 0, 0, 0x41,
|
||||
0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x73, 0xa, 0, 0x5, 0, 0xc0,
|
||||
0x56, 0xbf, 0xe2, 0xf, 0x84, 0xcf, 0x11, 0x8f, 0x52, 0,
|
||||
0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xa,
|
||||
0, 0, 0, 0x6f, 0x70, 0x65, 0x6e, 0x63, 0x6c, 0x6f,
|
||||
0x73, 0x65, 0x64, 0x14, 0, 0x29, 0, 0x1, 0, 0xf,
|
||||
0, 0, 0, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x14, 0,
|
||||
0xb, 0, 0x1f, 0, 0x1, 0, 0x9, 0, 0, 0,
|
||||
0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0xa,
|
||||
0, 0x5, 0, 0x4f, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf,
|
||||
0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0xe,
|
||||
0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xc, 0, 0, 0, 0x41,
|
||||
0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65,
|
||||
0x74, 0xa, 0, 0x5, 0, 0x50, 0xab, 0x82, 0x3d, 0xda,
|
||||
0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4,
|
||||
0x33, 0xe, 0, 0x1, 0, 0x9, 0, 0, 0, 0x41,
|
||||
0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0xf, 0,
|
||||
0xb, 0, 0x1f, 0, 0x1, 0, 0xa, 0, 0, 0,
|
||||
0x49, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61,
|
||||
0xa, 0, 0x5, 0, 0xa0, 0xee, 0x23, 0x3a, 0xb1, 0x94,
|
||||
0xd0, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33,
|
||||
0xe, 0, 0x1, 0, 0x6, 0, 0, 0, 0x42, 0x49,
|
||||
0x4e, 0x41, 0x52, 0x59, 0xf, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x3, 0, 0, 0, 0x55, 0x72, 0x6c, 0xa,
|
||||
0, 0x5, 0, 0xa1, 0xee, 0x23, 0x3a, 0xb1, 0x94, 0xd0,
|
||||
0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0x29,
|
||||
0, 0x1, 0, 0x5, 0, 0, 0, 0x6e, 0x55, 0x72,
|
||||
0x6c, 0x73, 0x14, 0, 0x34, 0, 0x31, 0, 0x1, 0,
|
||||
0x4, 0, 0, 0, 0x75, 0x72, 0x6c, 0x73, 0xe, 0,
|
||||
0x1, 0, 0x5, 0, 0, 0, 0x6e, 0x55, 0x72, 0x6c,
|
||||
0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1,
|
||||
0, 0xf, 0, 0, 0, 0x50, 0x72, 0x6f, 0x67, 0x72,
|
||||
0x65, 0x73, 0x73, 0x69, 0x76, 0x65, 0x4d, 0x65, 0x73, 0x68,
|
||||
0xa, 0, 0x5, 0, 0x60, 0xc3, 0x63, 0x8a, 0x7d, 0x99,
|
||||
0xd0, 0x11, 0x94, 0x1c, 0, 0x80, 0xc8, 0xc, 0xfa, 0x7b,
|
||||
0xe, 0, 0x1, 0, 0x3, 0, 0, 0, 0x55, 0x72,
|
||||
0x6c, 0x13, 0, 0x1, 0, 0xa, 0, 0, 0, 0x49,
|
||||
0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0xf,
|
||||
0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x4, 0, 0,
|
||||
0, 0x47, 0x75, 0x69, 0x64, 0xa, 0, 0x5, 0, 0xe0,
|
||||
0x90, 0x27, 0xa4, 0x10, 0x78, 0xcf, 0x11, 0x8f, 0x52, 0,
|
||||
0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x64, 0x61, 0x74, 0x61, 0x31, 0x14, 0,
|
||||
0x28, 0, 0x1, 0, 0x5, 0, 0, 0, 0x64, 0x61,
|
||||
0x74, 0x61, 0x32, 0x14, 0, 0x28, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x64, 0x61, 0x74, 0x61, 0x33, 0x14, 0,
|
||||
0x34, 0, 0x2d, 0, 0x1, 0, 0x5, 0, 0, 0,
|
||||
0x64, 0x61, 0x74, 0x61, 0x34, 0xe, 0, 0x3, 0, 0x8,
|
||||
0, 0, 0, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f,
|
||||
0, 0x1, 0, 0xe, 0, 0, 0, 0x53, 0x74, 0x72,
|
||||
0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
|
||||
0x79, 0xa, 0, 0x5, 0, 0xe0, 0x21, 0xf, 0x7f, 0xe1,
|
||||
0xbf, 0xd1, 0x11, 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72,
|
||||
0x71, 0x31, 0, 0x1, 0, 0x3, 0, 0, 0, 0x6b,
|
||||
0x65, 0x79, 0x14, 0, 0x31, 0, 0x1, 0, 0x5, 0,
|
||||
0, 0, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x14, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xb, 0, 0, 0, 0x50,
|
||||
0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x42, 0x61, 0x67,
|
||||
0xa, 0, 0x5, 0, 0xe1, 0x21, 0xf, 0x7f, 0xe1, 0xbf,
|
||||
0xd1, 0x11, 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, 0x71,
|
||||
0xe, 0, 0x1, 0, 0xe, 0, 0, 0, 0x53, 0x74,
|
||||
0x72, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72,
|
||||
0x74, 0x79, 0xf, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0xe, 0, 0, 0, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e,
|
||||
0x61, 0x6c, 0x56, 0x69, 0x73, 0x75, 0x61, 0x6c, 0xa, 0,
|
||||
0x5, 0, 0xa0, 0x6a, 0x11, 0x98, 0xba, 0xbd, 0xd1, 0x11,
|
||||
0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, 0x71, 0x1, 0,
|
||||
0x4, 0, 0, 0, 0x47, 0x75, 0x69, 0x64, 0x1, 0,
|
||||
0x12, 0, 0, 0, 0x67, 0x75, 0x69, 0x64, 0x45, 0x78,
|
||||
0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x56, 0x69, 0x73, 0x75,
|
||||
0x61, 0x6c, 0x14, 0, 0xe, 0, 0x12, 0, 0x12, 0,
|
||||
0x12, 0, 0xf, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0xb, 0, 0, 0, 0x52, 0x69, 0x67, 0x68, 0x74, 0x48,
|
||||
0x61, 0x6e, 0x64, 0x65, 0x64, 0xa, 0, 0x5, 0, 0xa0,
|
||||
0x5e, 0x5d, 0x7f, 0x3a, 0xd5, 0xd1, 0x11, 0x82, 0xc0, 0,
|
||||
0xa0, 0xc9, 0x69, 0x72, 0x71, 0x29, 0, 0x1, 0, 0xc,
|
||||
0, 0, 0, 0x62, 0x52, 0x69, 0x67, 0x68, 0x74, 0x48,
|
||||
0x61, 0x6e, 0x64, 0x65, 0x64, 0x14, 0, 0xb, 0
|
||||
0x78, 0x6f, 0x66, 0x20, 0x30, 0x33, 0x30, 0x32, 0x62,
|
||||
0x69, 0x6e, 0x20, 0x30, 0x30, 0x36, 0x34, 0x1f, 0, 0x1,
|
||||
0, 0x6, 0, 0, 0, 0x48, 0x65, 0x61, 0x64, 0x65,
|
||||
0x72, 0xa, 0, 0x5, 0, 0x43, 0xab, 0x82, 0x3d, 0xda,
|
||||
0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4,
|
||||
0x33, 0x28, 0, 0x1, 0, 0x5, 0, 0, 0, 0x6d,
|
||||
0x61, 0x6a, 0x6f, 0x72, 0x14, 0, 0x28, 0, 0x1, 0,
|
||||
0x5, 0, 0, 0, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x14,
|
||||
0, 0x29, 0, 0x1, 0, 0x5, 0, 0, 0, 0x66,
|
||||
0x6c, 0x61, 0x67, 0x73, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, 0x74,
|
||||
0x6f, 0x72, 0xa, 0, 0x5, 0, 0x5e, 0xab, 0x82, 0x3d,
|
||||
0xda, 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71,
|
||||
0xe4, 0x33, 0x2a, 0, 0x1, 0, 0x1, 0, 0, 0,
|
||||
0x78, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0, 0,
|
||||
0, 0x79, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0,
|
||||
0, 0, 0x7a, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1,
|
||||
0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6f, 0x72, 0x64,
|
||||
0x73, 0x32, 0x64, 0xa, 0, 0x5, 0, 0x44, 0x3f, 0xf2,
|
||||
0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x2a, 0, 0x1, 0, 0x1, 0, 0,
|
||||
0, 0x75, 0x14, 0, 0x2a, 0, 0x1, 0, 0x1, 0,
|
||||
0, 0, 0x76, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x4d, 0x61, 0x74, 0x72, 0x69,
|
||||
0x78, 0x34, 0x78, 0x34, 0xa, 0, 0x5, 0, 0x45, 0x3f,
|
||||
0xf2, 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40,
|
||||
0x33, 0x35, 0x94, 0xa3, 0x34, 0, 0x2a, 0, 0x1, 0,
|
||||
0x6, 0, 0, 0, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78,
|
||||
0xe, 0, 0x3, 0, 0x10, 0, 0, 0, 0xf, 0,
|
||||
0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x9, 0,
|
||||
0, 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42,
|
||||
0x41, 0xa, 0, 0x5, 0, 0xe0, 0x44, 0xff, 0x35, 0x7c,
|
||||
0x6c, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94,
|
||||
0xa3, 0x2a, 0, 0x1, 0, 0x3, 0, 0, 0, 0x72,
|
||||
0x65, 0x64, 0x14, 0, 0x2a, 0, 0x1, 0, 0x5, 0,
|
||||
0, 0, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x14, 0, 0x2a,
|
||||
0, 0x1, 0, 0x4, 0, 0, 0, 0x62, 0x6c, 0x75,
|
||||
0x65, 0x14, 0, 0x2a, 0, 0x1, 0, 0x5, 0, 0,
|
||||
0, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x8, 0, 0, 0, 0x43, 0x6f,
|
||||
0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0xa, 0, 0x5, 0,
|
||||
0x81, 0x6e, 0xe1, 0xd3, 0x35, 0x78, 0xcf, 0x11, 0x8f, 0x52,
|
||||
0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x2a, 0, 0x1, 0,
|
||||
0x3, 0, 0, 0, 0x72, 0x65, 0x64, 0x14, 0, 0x2a,
|
||||
0, 0x1, 0, 0x5, 0, 0, 0, 0x67, 0x72, 0x65,
|
||||
0x65, 0x6e, 0x14, 0, 0x2a, 0, 0x1, 0, 0x4, 0,
|
||||
0, 0, 0x62, 0x6c, 0x75, 0x65, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0xc, 0, 0, 0, 0x49, 0x6e,
|
||||
0x64, 0x65, 0x78, 0x65, 0x64, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
|
||||
0xa, 0, 0x5, 0, 0x20, 0xb8, 0x30, 0x16, 0x42, 0x78,
|
||||
0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3,
|
||||
0x29, 0, 0x1, 0, 0x5, 0, 0, 0, 0x69, 0x6e,
|
||||
0x64, 0x65, 0x78, 0x14, 0, 0x1, 0, 0x9, 0, 0,
|
||||
0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0x41,
|
||||
0x1, 0, 0xa, 0, 0, 0, 0x69, 0x6e, 0x64, 0x65,
|
||||
0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x7, 0, 0, 0, 0x42, 0x6f,
|
||||
0x6f, 0x6c, 0x65, 0x61, 0x6e, 0xa, 0, 0x5, 0, 0xa0,
|
||||
0xa6, 0x7d, 0x53, 0x37, 0xca, 0xd0, 0x11, 0x94, 0x1c, 0,
|
||||
0x80, 0xc8, 0xc, 0xfa, 0x7b, 0x29, 0, 0x1, 0, 0x9,
|
||||
0, 0, 0, 0x74, 0x72, 0x75, 0x65, 0x66, 0x61, 0x6c,
|
||||
0x73, 0x65, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0x9, 0, 0, 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61,
|
||||
0x6e, 0x32, 0x64, 0xa, 0, 0x5, 0, 0x63, 0xae, 0x85,
|
||||
0x48, 0xe8, 0x78, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x1, 0, 0x7, 0, 0, 0, 0x42,
|
||||
0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x1, 0, 0x1, 0,
|
||||
0, 0, 0x75, 0x14, 0, 0x1, 0, 0x7, 0, 0,
|
||||
0, 0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x1, 0,
|
||||
0x1, 0, 0, 0, 0x76, 0x14, 0, 0xb, 0, 0x1f,
|
||||
0, 0x1, 0, 0xc, 0, 0, 0, 0x4d, 0x61, 0x74,
|
||||
0x65, 0x72, 0x69, 0x61, 0x6c, 0x57, 0x72, 0x61, 0x70, 0xa,
|
||||
0, 0x5, 0, 0x60, 0xae, 0x85, 0x48, 0xe8, 0x78, 0xcf,
|
||||
0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x1,
|
||||
0, 0x7, 0, 0, 0, 0x42, 0x6f, 0x6f, 0x6c, 0x65,
|
||||
0x61, 0x6e, 0x1, 0, 0x1, 0, 0, 0, 0x75, 0x14,
|
||||
0, 0x1, 0, 0x7, 0, 0, 0, 0x42, 0x6f, 0x6f,
|
||||
0x6c, 0x65, 0x61, 0x6e, 0x1, 0, 0x1, 0, 0, 0,
|
||||
0x76, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0xf,
|
||||
0, 0, 0, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65,
|
||||
0x46, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0xa, 0,
|
||||
0x5, 0, 0xe1, 0x90, 0x27, 0xa4, 0x10, 0x78, 0xcf, 0x11,
|
||||
0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x31, 0,
|
||||
0x1, 0, 0x8, 0, 0, 0, 0x66, 0x69, 0x6c, 0x65,
|
||||
0x6e, 0x61, 0x6d, 0x65, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x8, 0, 0, 0, 0x4d, 0x61, 0x74, 0x65,
|
||||
0x72, 0x69, 0x61, 0x6c, 0xa, 0, 0x5, 0, 0x4d, 0xab,
|
||||
0x82, 0x3d, 0xda, 0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20,
|
||||
0xaf, 0x71, 0xe4, 0x33, 0x1, 0, 0x9, 0, 0, 0,
|
||||
0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42, 0x41, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, 0x43,
|
||||
0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0x2a, 0, 0x1, 0,
|
||||
0x5, 0, 0, 0, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x14,
|
||||
0, 0x1, 0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6c,
|
||||
0x6f, 0x72, 0x52, 0x47, 0x42, 0x1, 0, 0xd, 0, 0,
|
||||
0, 0x73, 0x70, 0x65, 0x63, 0x75, 0x6c, 0x61, 0x72, 0x43,
|
||||
0x6f, 0x6c, 0x6f, 0x72, 0x14, 0, 0x1, 0, 0x8, 0,
|
||||
0, 0, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x47, 0x42,
|
||||
0x1, 0, 0xd, 0, 0, 0, 0x65, 0x6d, 0x69, 0x73,
|
||||
0x73, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x14,
|
||||
0, 0xe, 0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf,
|
||||
0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x8, 0, 0,
|
||||
0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, 0x63, 0x65, 0xa,
|
||||
0, 0x5, 0, 0x5f, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf,
|
||||
0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0x29,
|
||||
0, 0x1, 0, 0x12, 0, 0, 0, 0x6e, 0x46, 0x61,
|
||||
0x63, 0x65, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x49, 0x6e,
|
||||
0x64, 0x69, 0x63, 0x65, 0x73, 0x14, 0, 0x34, 0, 0x29,
|
||||
0, 0x1, 0, 0x11, 0, 0, 0, 0x66, 0x61, 0x63,
|
||||
0x65, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x49, 0x6e, 0x64,
|
||||
0x69, 0x63, 0x65, 0x73, 0xe, 0, 0x1, 0, 0x12, 0,
|
||||
0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x56, 0x65, 0x72,
|
||||
0x74, 0x65, 0x78, 0x49, 0x6e, 0x64, 0x69, 0x63, 0x65, 0x73,
|
||||
0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0xd, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61,
|
||||
0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x73, 0xa, 0, 0x5,
|
||||
0, 0xc0, 0xc5, 0x1e, 0xed, 0xa8, 0xc0, 0xd0, 0x11, 0x94,
|
||||
0x1c, 0, 0x80, 0xc8, 0xc, 0xfa, 0x7b, 0x29, 0, 0x1,
|
||||
0, 0xf, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65,
|
||||
0x57, 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73,
|
||||
0x14, 0, 0x34, 0, 0x1, 0, 0x9, 0, 0, 0,
|
||||
0x42, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x32, 0x64, 0x1,
|
||||
0, 0xe, 0, 0, 0, 0x66, 0x61, 0x63, 0x65, 0x57,
|
||||
0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0xe,
|
||||
0, 0x1, 0, 0xf, 0, 0, 0, 0x6e, 0x46, 0x61,
|
||||
0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x56, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x11, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68,
|
||||
0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, 0x6f,
|
||||
0x72, 0x64, 0x73, 0xa, 0, 0x5, 0, 0x40, 0x3f, 0xf2,
|
||||
0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xe, 0, 0,
|
||||
0, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43,
|
||||
0x6f, 0x6f, 0x72, 0x64, 0x73, 0x14, 0, 0x34, 0, 0x1,
|
||||
0, 0x8, 0, 0, 0, 0x43, 0x6f, 0x6f, 0x72, 0x64,
|
||||
0x73, 0x32, 0x64, 0x1, 0, 0xd, 0, 0, 0, 0x74,
|
||||
0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f, 0x6f, 0x72,
|
||||
0x64, 0x73, 0xe, 0, 0x1, 0, 0xe, 0, 0, 0,
|
||||
0x6e, 0x54, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6f,
|
||||
0x6f, 0x72, 0x64, 0x73, 0xf, 0, 0x14, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x10, 0, 0, 0, 0x4d, 0x65,
|
||||
0x73, 0x68, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
|
||||
0x4c, 0x69, 0x73, 0x74, 0xa, 0, 0x5, 0, 0x42, 0x3f,
|
||||
0xf2, 0xf6, 0x86, 0x76, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40,
|
||||
0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xa, 0,
|
||||
0, 0, 0x6e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
|
||||
0x6c, 0x73, 0x14, 0, 0x29, 0, 0x1, 0, 0xc, 0,
|
||||
0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x64,
|
||||
0x65, 0x78, 0x65, 0x73, 0x14, 0, 0x34, 0, 0x29, 0,
|
||||
0x1, 0, 0xb, 0, 0, 0, 0x66, 0x61, 0x63, 0x65,
|
||||
0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0xe, 0, 0x1,
|
||||
0, 0xc, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65,
|
||||
0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0xf, 0, 0x14,
|
||||
0, 0xe, 0, 0x1, 0, 0x8, 0, 0, 0, 0x4d,
|
||||
0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0xf, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xb, 0, 0, 0, 0x4d,
|
||||
0x65, 0x73, 0x68, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73,
|
||||
0xa, 0, 0x5, 0, 0x43, 0x3f, 0xf2, 0xf6, 0x86, 0x76,
|
||||
0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3,
|
||||
0x29, 0, 0x1, 0, 0x8, 0, 0, 0, 0x6e, 0x4e,
|
||||
0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73, 0x14, 0, 0x34, 0,
|
||||
0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63, 0x74,
|
||||
0x6f, 0x72, 0x1, 0, 0x7, 0, 0, 0, 0x6e, 0x6f,
|
||||
0x72, 0x6d, 0x61, 0x6c, 0x73, 0xe, 0, 0x1, 0, 0x8,
|
||||
0, 0, 0, 0x6e, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c,
|
||||
0x73, 0xf, 0, 0x14, 0, 0x29, 0, 0x1, 0, 0xc,
|
||||
0, 0, 0, 0x6e, 0x46, 0x61, 0x63, 0x65, 0x4e, 0x6f,
|
||||
0x72, 0x6d, 0x61, 0x6c, 0x73, 0x14, 0, 0x34, 0, 0x1,
|
||||
0, 0x8, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46,
|
||||
0x61, 0x63, 0x65, 0x1, 0, 0xb, 0, 0, 0, 0x66,
|
||||
0x61, 0x63, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73,
|
||||
0xe, 0, 0x1, 0, 0xc, 0, 0, 0, 0x6e, 0x46,
|
||||
0x61, 0x63, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x73,
|
||||
0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0x10, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68, 0x56, 0x65,
|
||||
0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x73,
|
||||
0xa, 0, 0x5, 0, 0x21, 0xb8, 0x30, 0x16, 0x42, 0x78,
|
||||
0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3,
|
||||
0x29, 0, 0x1, 0, 0xd, 0, 0, 0, 0x6e, 0x56,
|
||||
0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
|
||||
0x73, 0x14, 0, 0x34, 0, 0x1, 0, 0xc, 0, 0,
|
||||
0, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x64, 0x43, 0x6f,
|
||||
0x6c, 0x6f, 0x72, 0x1, 0, 0xc, 0, 0, 0, 0x76,
|
||||
0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
|
||||
0x73, 0xe, 0, 0x1, 0, 0xd, 0, 0, 0, 0x6e,
|
||||
0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x43, 0x6f, 0x6c, 0x6f,
|
||||
0x72, 0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x4, 0, 0, 0, 0x4d, 0x65, 0x73, 0x68,
|
||||
0xa, 0, 0x5, 0, 0x44, 0xab, 0x82, 0x3d, 0xda, 0x62,
|
||||
0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33,
|
||||
0x29, 0, 0x1, 0, 0x9, 0, 0, 0, 0x6e, 0x56,
|
||||
0x65, 0x72, 0x74, 0x69, 0x63, 0x65, 0x73, 0x14, 0, 0x34,
|
||||
0, 0x1, 0, 0x6, 0, 0, 0, 0x56, 0x65, 0x63,
|
||||
0x74, 0x6f, 0x72, 0x1, 0, 0x8, 0, 0, 0, 0x76,
|
||||
0x65, 0x72, 0x74, 0x69, 0x63, 0x65, 0x73, 0xe, 0, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x6e, 0x56, 0x65, 0x72, 0x74,
|
||||
0x69, 0x63, 0x65, 0x73, 0xf, 0, 0x14, 0, 0x29, 0,
|
||||
0x1, 0, 0x6, 0, 0, 0, 0x6e, 0x46, 0x61, 0x63,
|
||||
0x65, 0x73, 0x14, 0, 0x34, 0, 0x1, 0, 0x8, 0,
|
||||
0, 0, 0x4d, 0x65, 0x73, 0x68, 0x46, 0x61, 0x63, 0x65,
|
||||
0x1, 0, 0x5, 0, 0, 0, 0x66, 0x61, 0x63, 0x65,
|
||||
0x73, 0xe, 0, 0x1, 0, 0x6, 0, 0, 0, 0x6e,
|
||||
0x46, 0x61, 0x63, 0x65, 0x73, 0xf, 0, 0x14, 0, 0xe,
|
||||
0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0x14, 0, 0, 0, 0x46,
|
||||
0x72, 0x61, 0x6d, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66,
|
||||
0x6f, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0xa,
|
||||
0, 0x5, 0, 0x41, 0x3f, 0xf2, 0xf6, 0x86, 0x76, 0xcf,
|
||||
0x11, 0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x1,
|
||||
0, 0x9, 0, 0, 0, 0x4d, 0x61, 0x74, 0x72, 0x69,
|
||||
0x78, 0x34, 0x78, 0x34, 0x1, 0, 0xb, 0, 0, 0,
|
||||
0x66, 0x72, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x74, 0x72, 0x69,
|
||||
0x78, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x46, 0x72, 0x61, 0x6d, 0x65, 0xa, 0,
|
||||
0x5, 0, 0x46, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf, 0x11,
|
||||
0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0xe, 0,
|
||||
0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb, 0,
|
||||
0x1f, 0, 0x1, 0, 0x9, 0, 0, 0, 0x46, 0x6c,
|
||||
0x6f, 0x61, 0x74, 0x4b, 0x65, 0x79, 0x73, 0xa, 0, 0x5,
|
||||
0, 0xa9, 0x46, 0xdd, 0x10, 0x5b, 0x77, 0xcf, 0x11, 0x8f,
|
||||
0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1,
|
||||
0, 0x7, 0, 0, 0, 0x6e, 0x56, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x73, 0x14, 0, 0x34, 0, 0x2a, 0, 0x1, 0,
|
||||
0x6, 0, 0, 0, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73,
|
||||
0xe, 0, 0x1, 0, 0x7, 0, 0, 0, 0x6e, 0x56,
|
||||
0x61, 0x6c, 0x75, 0x65, 0x73, 0xf, 0, 0x14, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xe, 0, 0, 0, 0x54,
|
||||
0x69, 0x6d, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b,
|
||||
0x65, 0x79, 0x73, 0xa, 0, 0x5, 0, 0x80, 0xb1, 0x6,
|
||||
0xf4, 0x3b, 0x7b, 0xcf, 0x11, 0x8f, 0x52, 0, 0x40, 0x33,
|
||||
0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0x4, 0, 0,
|
||||
0, 0x74, 0x69, 0x6d, 0x65, 0x14, 0, 0x1, 0, 0x9,
|
||||
0, 0, 0, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, 0x65,
|
||||
0x79, 0x73, 0x1, 0, 0x6, 0, 0, 0, 0x74, 0x66,
|
||||
0x6b, 0x65, 0x79, 0x73, 0x14, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0xc, 0, 0, 0, 0x41, 0x6e, 0x69, 0x6d,
|
||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0xa, 0,
|
||||
0x5, 0, 0xa8, 0x46, 0xdd, 0x10, 0x5b, 0x77, 0xcf, 0x11,
|
||||
0x8f, 0x52, 0, 0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0,
|
||||
0x1, 0, 0x7, 0, 0, 0, 0x6b, 0x65, 0x79, 0x54,
|
||||
0x79, 0x70, 0x65, 0x14, 0, 0x29, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x14, 0,
|
||||
0x34, 0, 0x1, 0, 0xe, 0, 0, 0, 0x54, 0x69,
|
||||
0x6d, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x4b, 0x65,
|
||||
0x79, 0x73, 0x1, 0, 0x4, 0, 0, 0, 0x6b, 0x65,
|
||||
0x79, 0x73, 0xe, 0, 0x1, 0, 0x5, 0, 0, 0,
|
||||
0x6e, 0x4b, 0x65, 0x79, 0x73, 0xf, 0, 0x14, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0x10, 0, 0, 0, 0x41,
|
||||
0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x73, 0xa, 0, 0x5, 0, 0xc0,
|
||||
0x56, 0xbf, 0xe2, 0xf, 0x84, 0xcf, 0x11, 0x8f, 0x52, 0,
|
||||
0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0xa,
|
||||
0, 0, 0, 0x6f, 0x70, 0x65, 0x6e, 0x63, 0x6c, 0x6f,
|
||||
0x73, 0x65, 0x64, 0x14, 0, 0x29, 0, 0x1, 0, 0xf,
|
||||
0, 0, 0, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x14, 0,
|
||||
0xb, 0, 0x1f, 0, 0x1, 0, 0x9, 0, 0, 0,
|
||||
0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0xa,
|
||||
0, 0x5, 0, 0x4f, 0xab, 0x82, 0x3d, 0xda, 0x62, 0xcf,
|
||||
0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0xe,
|
||||
0, 0x12, 0, 0x12, 0, 0x12, 0, 0xf, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xc, 0, 0, 0, 0x41,
|
||||
0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65,
|
||||
0x74, 0xa, 0, 0x5, 0, 0x50, 0xab, 0x82, 0x3d, 0xda,
|
||||
0x62, 0xcf, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4,
|
||||
0x33, 0xe, 0, 0x1, 0, 0x9, 0, 0, 0, 0x41,
|
||||
0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0xf, 0,
|
||||
0xb, 0, 0x1f, 0, 0x1, 0, 0xa, 0, 0, 0,
|
||||
0x49, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61,
|
||||
0xa, 0, 0x5, 0, 0xa0, 0xee, 0x23, 0x3a, 0xb1, 0x94,
|
||||
0xd0, 0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33,
|
||||
0xe, 0, 0x1, 0, 0x6, 0, 0, 0, 0x42, 0x49,
|
||||
0x4e, 0x41, 0x52, 0x59, 0xf, 0, 0xb, 0, 0x1f, 0,
|
||||
0x1, 0, 0x3, 0, 0, 0, 0x55, 0x72, 0x6c, 0xa,
|
||||
0, 0x5, 0, 0xa1, 0xee, 0x23, 0x3a, 0xb1, 0x94, 0xd0,
|
||||
0x11, 0xab, 0x39, 0, 0x20, 0xaf, 0x71, 0xe4, 0x33, 0x29,
|
||||
0, 0x1, 0, 0x5, 0, 0, 0, 0x6e, 0x55, 0x72,
|
||||
0x6c, 0x73, 0x14, 0, 0x34, 0, 0x31, 0, 0x1, 0,
|
||||
0x4, 0, 0, 0, 0x75, 0x72, 0x6c, 0x73, 0xe, 0,
|
||||
0x1, 0, 0x5, 0, 0, 0, 0x6e, 0x55, 0x72, 0x6c,
|
||||
0x73, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f, 0, 0x1,
|
||||
0, 0xf, 0, 0, 0, 0x50, 0x72, 0x6f, 0x67, 0x72,
|
||||
0x65, 0x73, 0x73, 0x69, 0x76, 0x65, 0x4d, 0x65, 0x73, 0x68,
|
||||
0xa, 0, 0x5, 0, 0x60, 0xc3, 0x63, 0x8a, 0x7d, 0x99,
|
||||
0xd0, 0x11, 0x94, 0x1c, 0, 0x80, 0xc8, 0xc, 0xfa, 0x7b,
|
||||
0xe, 0, 0x1, 0, 0x3, 0, 0, 0, 0x55, 0x72,
|
||||
0x6c, 0x13, 0, 0x1, 0, 0xa, 0, 0, 0, 0x49,
|
||||
0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61, 0xf,
|
||||
0, 0xb, 0, 0x1f, 0, 0x1, 0, 0x4, 0, 0,
|
||||
0, 0x47, 0x75, 0x69, 0x64, 0xa, 0, 0x5, 0, 0xe0,
|
||||
0x90, 0x27, 0xa4, 0x10, 0x78, 0xcf, 0x11, 0x8f, 0x52, 0,
|
||||
0x40, 0x33, 0x35, 0x94, 0xa3, 0x29, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x64, 0x61, 0x74, 0x61, 0x31, 0x14, 0,
|
||||
0x28, 0, 0x1, 0, 0x5, 0, 0, 0, 0x64, 0x61,
|
||||
0x74, 0x61, 0x32, 0x14, 0, 0x28, 0, 0x1, 0, 0x5,
|
||||
0, 0, 0, 0x64, 0x61, 0x74, 0x61, 0x33, 0x14, 0,
|
||||
0x34, 0, 0x2d, 0, 0x1, 0, 0x5, 0, 0, 0,
|
||||
0x64, 0x61, 0x74, 0x61, 0x34, 0xe, 0, 0x3, 0, 0x8,
|
||||
0, 0, 0, 0xf, 0, 0x14, 0, 0xb, 0, 0x1f,
|
||||
0, 0x1, 0, 0xe, 0, 0, 0, 0x53, 0x74, 0x72,
|
||||
0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
|
||||
0x79, 0xa, 0, 0x5, 0, 0xe0, 0x21, 0xf, 0x7f, 0xe1,
|
||||
0xbf, 0xd1, 0x11, 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72,
|
||||
0x71, 0x31, 0, 0x1, 0, 0x3, 0, 0, 0, 0x6b,
|
||||
0x65, 0x79, 0x14, 0, 0x31, 0, 0x1, 0, 0x5, 0,
|
||||
0, 0, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x14, 0, 0xb,
|
||||
0, 0x1f, 0, 0x1, 0, 0xb, 0, 0, 0, 0x50,
|
||||
0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x42, 0x61, 0x67,
|
||||
0xa, 0, 0x5, 0, 0xe1, 0x21, 0xf, 0x7f, 0xe1, 0xbf,
|
||||
0xd1, 0x11, 0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, 0x71,
|
||||
0xe, 0, 0x1, 0, 0xe, 0, 0, 0, 0x53, 0x74,
|
||||
0x72, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72,
|
||||
0x74, 0x79, 0xf, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0xe, 0, 0, 0, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e,
|
||||
0x61, 0x6c, 0x56, 0x69, 0x73, 0x75, 0x61, 0x6c, 0xa, 0,
|
||||
0x5, 0, 0xa0, 0x6a, 0x11, 0x98, 0xba, 0xbd, 0xd1, 0x11,
|
||||
0x82, 0xc0, 0, 0xa0, 0xc9, 0x69, 0x72, 0x71, 0x1, 0,
|
||||
0x4, 0, 0, 0, 0x47, 0x75, 0x69, 0x64, 0x1, 0,
|
||||
0x12, 0, 0, 0, 0x67, 0x75, 0x69, 0x64, 0x45, 0x78,
|
||||
0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x56, 0x69, 0x73, 0x75,
|
||||
0x61, 0x6c, 0x14, 0, 0xe, 0, 0x12, 0, 0x12, 0,
|
||||
0x12, 0, 0xf, 0, 0xb, 0, 0x1f, 0, 0x1, 0,
|
||||
0xb, 0, 0, 0, 0x52, 0x69, 0x67, 0x68, 0x74, 0x48,
|
||||
0x61, 0x6e, 0x64, 0x65, 0x64, 0xa, 0, 0x5, 0, 0xa0,
|
||||
0x5e, 0x5d, 0x7f, 0x3a, 0xd5, 0xd1, 0x11, 0x82, 0xc0, 0,
|
||||
0xa0, 0xc9, 0x69, 0x72, 0x71, 0x29, 0, 0x1, 0, 0xc,
|
||||
0, 0, 0, 0x62, 0x52, 0x69, 0x67, 0x68, 0x74, 0x48,
|
||||
0x61, 0x6e, 0x64, 0x65, 0x64, 0x14, 0, 0xb, 0
|
||||
};
|
||||
|
||||
#define D3DRM_XTEMPLATE_BYTES 3278
|
||||
|
||||
#endif /* _RMXFTMPL_H_ */
|
||||
|
||||
|
3
main.cpp
3
main.cpp
@ -72,6 +72,8 @@
|
||||
#include "PCInput.h"
|
||||
#include "PCShell.h"
|
||||
#include "stubs.h"
|
||||
#include "SpideyDX.h"
|
||||
#include "DXsound.h"
|
||||
|
||||
extern int FAIL_VALIDATION;
|
||||
|
||||
@ -420,6 +422,7 @@ i32 validate(void)
|
||||
validate_SMessageProg();
|
||||
validate_SLevel();
|
||||
validate_SMessage();
|
||||
validate_DXsound();
|
||||
|
||||
puts("[*] Validation done!");
|
||||
|
||||
|
4
my_dx.h
4
my_dx.h
@ -3,9 +3,13 @@
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
#define DIRECTINPUT_VERSION 0x0800
|
||||
|
||||
#include <d3d.h>
|
||||
#include <d3dcaps.h>
|
||||
#include <ddraw.h>
|
||||
#include <basetsd.h>
|
||||
#include <dinput.h>
|
||||
|
||||
#else
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
#ifndef _WIN32
|
||||
#define __int16 short
|
||||
#define __int8 char
|
||||
|
||||
#endif
|
||||
|
||||
typedef unsigned char u8;
|
||||
@ -48,5 +49,9 @@ typedef int i32;
|
||||
#define OVERRIDE
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32
|
||||
#define FAILED(x) ((i32)(x) < 0)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user