d3drm/tests: Make object_load_callback() static.

This commit is contained in:
Francois Gouget 2012-04-20 08:39:47 +02:00 committed by Alexandre Julliard
parent 1c07d166f1
commit 118ea982f1
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ static const GUID* refiids[] =
&IID_IDirect3DRMFrame
};
void __cdecl object_load_callback(LPDIRECT3DRMOBJECT object, REFIID objectguid, LPVOID arg)
static void __cdecl object_load_callback(LPDIRECT3DRMOBJECT object, REFIID objectguid, LPVOID arg)
{
ok(object != NULL, "Arg 1 should not be null\n");
ok(IsEqualGUID(objectguid, refiids[nb_objects]), "Arg 2 should is incorrect\n");