1 | /*
|
---|
2 | * Copyright (C) 2008 Francois Gouget
|
---|
3 | *
|
---|
4 | * This library is free software; you can redistribute it and/or
|
---|
5 | * modify it under the terms of the GNU Lesser General Public
|
---|
6 | * License as published by the Free Software Foundation; either
|
---|
7 | * version 2.1 of the License, or (at your option) any later version.
|
---|
8 | *
|
---|
9 | * This library is distributed in the hope that it will be useful,
|
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
12 | * Lesser General Public License for more details.
|
---|
13 | *
|
---|
14 | * You should have received a copy of the GNU Lesser General Public
|
---|
15 | * License along with this library; if not, write to the Free Software
|
---|
16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | /*
|
---|
20 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
21 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
22 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
23 | * a choice of LGPL license versions is made available with the language indicating
|
---|
24 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
25 | * of the LGPL is applied is otherwise unspecified.
|
---|
26 | */
|
---|
27 |
|
---|
28 | /*
|
---|
29 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
30 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
31 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
32 | * a choice of LGPL license versions is made available with the language indicating
|
---|
33 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
34 | * of the LGPL is applied is otherwise unspecified.
|
---|
35 | */
|
---|
36 |
|
---|
37 | /*
|
---|
38 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
39 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
40 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
41 | * a choice of LGPL license versions is made available with the language indicating
|
---|
42 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
43 | * of the LGPL is applied is otherwise unspecified.
|
---|
44 | */
|
---|
45 |
|
---|
46 | /*
|
---|
47 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
48 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
49 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
50 | * a choice of LGPL license versions is made available with the language indicating
|
---|
51 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
52 | * of the LGPL is applied is otherwise unspecified.
|
---|
53 | */
|
---|
54 |
|
---|
55 | /*
|
---|
56 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
57 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
58 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
59 | * a choice of LGPL license versions is made available with the language indicating
|
---|
60 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
61 | * of the LGPL is applied is otherwise unspecified.
|
---|
62 | */
|
---|
63 |
|
---|
64 | /*
|
---|
65 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
66 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
67 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
68 | * a choice of LGPL license versions is made available with the language indicating
|
---|
69 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
70 | * of the LGPL is applied is otherwise unspecified.
|
---|
71 | */
|
---|
72 |
|
---|
73 | #ifndef __WINE_D3DX8MESH_H
|
---|
74 | #define __WINE_D3DX8MESH_H
|
---|
75 |
|
---|
76 | #include <d3dx8.h>
|
---|
77 | #include <dxfile.h>
|
---|
78 |
|
---|
79 | #ifdef __cplusplus
|
---|
80 | extern "C" {
|
---|
81 | #endif
|
---|
82 |
|
---|
83 | HRESULT WINAPI D3DXCreateBuffer(DWORD,LPD3DXBUFFER*);
|
---|
84 | UINT WINAPI D3DXGetFVFVertexSize(DWORD);
|
---|
85 | BOOL WINAPI D3DXBoxBoundProbe(CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *);
|
---|
86 | BOOL WINAPI D3DXSphereBoundProbe(CONST D3DXVECTOR3 *,FLOAT,CONST D3DXVECTOR3 *,CONST D3DXVECTOR3 *);
|
---|
87 | BOOL CDECL D3DXIntersectTri(CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *, CONST D3DXVECTOR3 *, FLOAT *, FLOAT *, FLOAT *);
|
---|
88 | HRESULT WINAPI D3DXComputeBoundingBox(PVOID, DWORD, DWORD, D3DXVECTOR3 *, D3DXVECTOR3 *);
|
---|
89 | HRESULT WINAPI D3DXComputeBoundingSphere(PVOID, DWORD, DWORD, D3DXVECTOR3 *, FLOAT *);
|
---|
90 |
|
---|
91 | #ifdef __cplusplus
|
---|
92 | }
|
---|
93 | #endif
|
---|
94 |
|
---|
95 | #endif /* __WINE_D3DX8MESH_H */
|
---|