2 * Copyright 2010 Christian Costa
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.
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.
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
21 #include "wine/test.h"
23 static HMODULE d3drm_handle = 0;
25 static HRESULT (WINAPI * pDirect3DRMCreate)(LPDIRECT3DRM* ppDirect3DRM);
27 #define D3DRM_GET_PROC(func) \
28 p ## func = (void*)GetProcAddress(d3drm_handle, #func); \
30 trace("GetProcAddress(%s) failed\n", #func); \
31 FreeLibrary(d3drm_handle); \
35 static BOOL InitFunctionPtrs(void)
37 d3drm_handle = LoadLibraryA("d3drm.dll");
41 skip("Could not load d3drm.dll\n");
45 D3DRM_GET_PROC(Direct3DRMCreate)
50 char data_bad_version[] =
76 static void MeshBuilderTest(void)
80 LPDIRECT3DRMMESHBUILDER pMeshBuilder;
83 hr = pDirect3DRMCreate(&pD3DRM);
84 ok(hr == D3DRM_OK, "Cannot get IDirect3DRM interface (hr = %x)\n", hr);
86 hr = IDirect3DRM_CreateMeshBuilder(pD3DRM, &pMeshBuilder);
87 ok(hr == D3DRM_OK, "Cannot get IDirect3DRMMeshBuilder interface (hr = %x)\n", hr);
89 info.lpMemory = data_bad_version;
90 info.dSize = strlen(data_bad_version);
91 hr = IDirect3DRMMeshBuilder_Load(pMeshBuilder, &info, NULL, D3DRMLOAD_FROMMEMORY, NULL, NULL);
92 ok(hr == D3DRMERR_BADFILE, "Sould have returned D3DRMERR_BADFILE (hr = %x)\n", hr);
94 info.lpMemory = data_no_mesh;
95 info.dSize = strlen(data_no_mesh);
96 hr = IDirect3DRMMeshBuilder_Load(pMeshBuilder, &info, NULL, D3DRMLOAD_FROMMEMORY, NULL, NULL);
97 ok(hr == D3DRMERR_NOTFOUND, "Sould have returned D3DRMERR_NOTFOUND (hr = %x)\n", hr);
99 info.lpMemory = data_ok;
100 info.dSize = strlen(data_ok);
101 hr = IDirect3DRMMeshBuilder_Load(pMeshBuilder, &info, NULL, D3DRMLOAD_FROMMEMORY, NULL, NULL);
102 ok(hr == D3DRM_OK, "Cannot load mesh data (hr = %x)\n", hr);
104 IDirect3DRMMeshBuilder_Release(pMeshBuilder);
106 IDirect3DRM_Release(pD3DRM);
111 if (!InitFunctionPtrs())
116 FreeLibrary(d3drm_handle);