qt: playlist: use item title if available
[vlc.git] / modules / video_output / win32 / dcomp_wrapper.h
blob365615a0fbfefa5e2be45172dbdc1db46723c405
1 /*****************************************************************************
2 * Copyright (c) 2020 VideoLAN
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or
7 * (at your option) any later version.
9 * This program 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
12 * GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
17 *****************************************************************************/
18 #ifndef VLC_DCOMP_WRAPPER_H_
19 #define VLC_DCOMP_WRAPPER_H_
21 #include <windows.h>
22 #include <unknwn.h>
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
28 HRESULT IDCompositionVisual_SetContent(void* visual, IUnknown *content);
29 HRESULT IDCompositionDevice_Commit(void* device);
31 #ifdef __cplusplus
33 #endif
35 #endif