wbemuuid: Add library.
Signed-off-by: Brendan Shanks <bshanks@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7485362fa1
commit
829dff0ee7
|
@ -1617,6 +1617,7 @@ enable_vssapi
|
|||
enable_vulkan_1
|
||||
enable_wbemdisp
|
||||
enable_wbemprox
|
||||
enable_wbemuuid
|
||||
enable_wdscore
|
||||
enable_webservices
|
||||
enable_wer
|
||||
|
@ -20930,6 +20931,7 @@ wine_fn_config_makefile dlls/wbemdisp enable_wbemdisp
|
|||
wine_fn_config_makefile dlls/wbemdisp/tests enable_tests
|
||||
wine_fn_config_makefile dlls/wbemprox enable_wbemprox
|
||||
wine_fn_config_makefile dlls/wbemprox/tests enable_tests
|
||||
wine_fn_config_makefile dlls/wbemuuid enable_wbemuuid
|
||||
wine_fn_config_makefile dlls/wdscore enable_wdscore
|
||||
wine_fn_config_makefile dlls/webservices enable_webservices
|
||||
wine_fn_config_makefile dlls/webservices/tests enable_tests
|
||||
|
|
|
@ -3739,6 +3739,7 @@ WINE_CONFIG_MAKEFILE(dlls/wbemdisp)
|
|||
WINE_CONFIG_MAKEFILE(dlls/wbemdisp/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/wbemprox)
|
||||
WINE_CONFIG_MAKEFILE(dlls/wbemprox/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/wbemuuid)
|
||||
WINE_CONFIG_MAKEFILE(dlls/wdscore)
|
||||
WINE_CONFIG_MAKEFILE(dlls/webservices)
|
||||
WINE_CONFIG_MAKEFILE(dlls/webservices/tests)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
MODULE = libwbemuuid.a
|
||||
|
||||
C_SRCS = \
|
||||
wbemuuid.c
|
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* Copyright 2020 Brendan Shanks 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>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wingdi.h"
|
||||
#include "winuser.h"
|
||||
|
||||
#include "dispex.h"
|
||||
#include "objbase.h"
|
||||
#include "oleauto.h"
|
||||
#include "olectl.h"
|
||||
|
||||
#include "initguid.h"
|
||||
|
||||
#include "wbemcli.h"
|
||||
#include "wbemprov.h"
|
||||
#include "wbemdisp.h"
|
Loading…
Reference in New Issue