mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-29 02:33:58 +02:00
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/*
|
|
* Copyright 2022-2024 Zhiyi Zhang for CodeWeavers
|
|
* Copyright 2025 Jactry Zeng for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define COBJMACROS
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winstring.h"
|
|
#include "wine/debug.h"
|
|
#include "objbase.h"
|
|
|
|
#include "activation.h"
|
|
#include "rometadataresolution.h"
|
|
|
|
#define WIDL_using_Windows_Foundation
|
|
#define WIDL_using_Windows_Foundation_Collections
|
|
#define WIDL_using_Windows_Foundation_Metadata
|
|
#include "windows.foundation.metadata.h"
|
|
#define WIDL_using_Windows_Storage
|
|
#define WIDL_using_Windows_Storage_Streams
|
|
#include "windows.media.h"
|
|
#include "windows.storage.streams.h"
|
|
#include "wintypes_private.h"
|
|
|
|
extern IActivationFactory *data_writer_activation_factory;
|
|
extern IActivationFactory *buffer_activation_factory;
|
|
extern IActivationFactory *property_set_factory;
|