Commit 829dff0e authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

wbemuuid: Add library.

parent 7485362f
......@@ -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)
......
MODULE = libwbemuuid.a
C_SRCS = \
wbemuuid.c
/*
* 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"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment