regedit: Add message contexts for accelerators that can be translated.
[wine/multimedia.git] / dlls / dmloader / tests / loader.c
blob18e86e426c8eda17077f416a20d465b213886231
1 /*
2 * Copyright (C) 2010 David Adam
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
19 #define COBJMACROS
21 #include "initguid.h"
22 #include "dmusici.h"
23 #include "wine/test.h"
25 static void test_release_object(void)
27 HRESULT hr;
28 IDirectMusicLoader8* loader = NULL;
30 hr = CoInitialize(NULL);
31 if ( FAILED(hr) )
33 skip("CoInitialize failed.\n");
34 return;
37 hr = CoCreateInstance(&CLSID_DirectMusicLoader, NULL, CLSCTX_INPROC, &IID_IDirectMusicLoader8, (void**)&loader);
38 if ( FAILED(hr) )
40 skip("CoCreateInstance failed.\n");
41 CoUninitialize();
42 return;
45 hr = IDirectMusicLoader_ReleaseObject(loader, NULL);
46 ok(hr == E_POINTER, "Expected E_POINTER, received %#x\n", hr);
48 IDirectMusicLoader_Release(loader);
49 CoUninitialize();
52 START_TEST(loader)
54 test_release_object();