mfuuid: Add library.
Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d107b91caa
commit
95633f3681
|
@ -18444,6 +18444,7 @@ wine_fn_config_dll mf3216 enable_mf3216
|
|||
wine_fn_config_dll mfplat enable_mfplat implib
|
||||
wine_fn_config_test dlls/mfplat/tests mfplat_test
|
||||
wine_fn_config_dll mfreadwrite enable_mfreadwrite
|
||||
wine_fn_config_lib mfuuid
|
||||
wine_fn_config_dll mgmtapi enable_mgmtapi
|
||||
wine_fn_config_dll midimap enable_midimap
|
||||
wine_fn_config_dll mlang enable_mlang clean,implib
|
||||
|
|
|
@ -3233,6 +3233,7 @@ WINE_CONFIG_DLL(mf3216)
|
|||
WINE_CONFIG_DLL(mfplat,,[implib])
|
||||
WINE_CONFIG_TEST(dlls/mfplat/tests)
|
||||
WINE_CONFIG_DLL(mfreadwrite)
|
||||
WINE_CONFIG_LIB(mfuuid)
|
||||
WINE_CONFIG_DLL(mgmtapi)
|
||||
WINE_CONFIG_DLL(midimap)
|
||||
WINE_CONFIG_DLL(mlang,,[clean,implib])
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
MODULE = libmfuuid.a
|
||||
|
||||
C_SRCS = \
|
||||
mfuuid.c
|
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* GUID definitions
|
||||
*
|
||||
* Copyright 2017 Fabian Maurer
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* Don't define those GUIDs here */
|
||||
#include "propsys.h"
|
||||
#include "strmif.h"
|
||||
#include "mediaobj.h"
|
||||
|
||||
#include "initguid.h"
|
||||
|
||||
#include "mfapi.h"
|
||||
#include "mfidl.h"
|
||||
#include "mfreadwrite.h"
|
Loading…
Reference in New Issue