dmoguids: Add library.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
38e715387d
commit
1fc00f1769
|
@ -1213,6 +1213,7 @@ enable_dmband
|
|||
enable_dmcompos
|
||||
enable_dmime
|
||||
enable_dmloader
|
||||
enable_dmoguids
|
||||
enable_dmscript
|
||||
enable_dmstyle
|
||||
enable_dmsynth
|
||||
|
@ -18573,6 +18574,7 @@ wine_fn_config_makefile dlls/dmime enable_dmime
|
|||
wine_fn_config_makefile dlls/dmime/tests enable_tests
|
||||
wine_fn_config_makefile dlls/dmloader enable_dmloader
|
||||
wine_fn_config_makefile dlls/dmloader/tests enable_tests
|
||||
wine_fn_config_makefile dlls/dmoguids enable_dmoguids
|
||||
wine_fn_config_makefile dlls/dmscript enable_dmscript
|
||||
wine_fn_config_makefile dlls/dmscript/tests enable_tests
|
||||
wine_fn_config_makefile dlls/dmstyle enable_dmstyle
|
||||
|
|
|
@ -3194,6 +3194,7 @@ WINE_CONFIG_MAKEFILE(dlls/dmime)
|
|||
WINE_CONFIG_MAKEFILE(dlls/dmime/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/dmloader)
|
||||
WINE_CONFIG_MAKEFILE(dlls/dmloader/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/dmoguids)
|
||||
WINE_CONFIG_MAKEFILE(dlls/dmscript)
|
||||
WINE_CONFIG_MAKEFILE(dlls/dmscript/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/dmstyle)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
MODULE = libdmoguids.a
|
||||
|
||||
C_SRCS = \
|
||||
dmoguids.c
|
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* GUID definitions
|
||||
*
|
||||
* Copyright 2018 Zebediah Figura
|
||||
*
|
||||
* 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 "strmif.h"
|
||||
|
||||
#include "initguid.h"
|
||||
|
||||
#include "mediaobj.h"
|
||||
#include "dmoreg.h"
|
Loading…
Reference in New Issue