Commit 1bfdf232 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dx8: Add the d3dx8mesh.h header and move the relevant function declarations there.

Include d3dx8mesh.h in d3dx8.h and add some commented out ones as reminders.
parent 91d3a794
...@@ -115,6 +115,7 @@ SRCDIR_INCLUDES = \ ...@@ -115,6 +115,7 @@ SRCDIR_INCLUDES = \
d3dx8core.h \ d3dx8core.h \
d3dx8math.h \ d3dx8math.h \
d3dx8math.inl \ d3dx8math.inl \
d3dx8mesh.h \
d3dx9.h \ d3dx9.h \
d3dx9core.h \ d3dx9core.h \
d3dx9math.h \ d3dx9math.h \
......
...@@ -24,5 +24,9 @@ ...@@ -24,5 +24,9 @@
#include <d3dx8math.h> #include <d3dx8math.h>
#include <d3dx8core.h> #include <d3dx8core.h>
/* FIXME: #include <d3dx8tex.h> */
#include <d3dx8mesh.h>
/* FIXME: #include <d3dx8shape.h> */
/* FIXME: #include <d3dx8effect.h> */
#endif #endif
...@@ -109,9 +109,7 @@ DECLARE_INTERFACE_(ID3DXFont,IUnknown) ...@@ -109,9 +109,7 @@ DECLARE_INTERFACE_(ID3DXFont,IUnknown)
extern "C" { extern "C" {
#endif #endif
HRESULT WINAPI D3DXCreateBuffer(DWORD NumBytes, LPD3DXBUFFER* ppBuffer);
HRESULT WINAPI D3DXCreateFont(LPDIRECT3DDEVICE8 pDevice, HFONT hFont, LPD3DXFONT* ppFont); HRESULT WINAPI D3DXCreateFont(LPDIRECT3DDEVICE8 pDevice, HFONT hFont, LPD3DXFONT* ppFont);
UINT WINAPI D3DXGetFVFVertexSize(DWORD FVF);
HRESULT WINAPI D3DXAssembleShader(LPCVOID pSrcData, UINT SrcDataLen, DWORD Flags, HRESULT WINAPI D3DXAssembleShader(LPCVOID pSrcData, UINT SrcDataLen, DWORD Flags,
LPD3DXBUFFER* ppConstants, LPD3DXBUFFER* ppConstants,
LPD3DXBUFFER* ppCompiledShader, LPD3DXBUFFER* ppCompiledShader,
......
/*
* Copyright (C) 2008 Francois Gouget
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_D3DX8MESH_H
#define __WINE_D3DX8MESH_H
#include <d3d8.h>
#include <dxfile.h>
#ifdef __cplusplus
extern "C" {
#endif
HRESULT WINAPI D3DXCreateBuffer(DWORD,LPD3DXBUFFER*);
UINT WINAPI D3DXGetFVFVertexSize(DWORD);
#ifdef __cplusplus
}
#endif
#endif /* __WINE_D3DX8MESH_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment