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)
69 LPDIRECT3DRMMESHBUILDER pMeshBuilder;
72 hr = pDirect3DRMCreate(&pD3DRM);
73 ok(hr == D3DRM_OK, "Cannot get IDirect3DRM interface (hr = %x)\n", hr);
75 hr = IDirect3DRM_CreateMeshBuilder(pD3DRM, &pMeshBuilder);
76 ok(hr == D3DRM_OK, "Cannot get IDirect3DRMMeshBuilder interface (hr = %x)\n", hr);
78 info.lpMemory = data_bad;
79 info.dSize = sizeof(data_bad);
80 hr = IDirect3DRMMeshBuilder_Load(pMeshBuilder, &info, NULL, D3DRMLOAD_FROMMEMORY, NULL, NULL);
81 ok(hr == D3DRMERR_BADFILE, "Sould have returned D3DRMERR_BADFILE (hr = %x)\n", hr);
83 info.lpMemory = data_ok;
84 info.dSize = sizeof(data_ok);
85 hr = IDirect3DRMMeshBuilder_Load(pMeshBuilder, &info, NULL, D3DRMLOAD_FROMMEMORY, NULL, NULL);
86 ok(hr == D3DRM_OK, "Cannot load mesh data (hr = %x)\n", hr);
88 IDirect3DRMMeshBuilder_Release(pMeshBuilder);
90 IDirect3DRM_Release(pD3DRM);
95 if (!InitFunctionPtrs())
100 FreeLibrary(d3drm_handle);