Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dd1d8cab
Commit
dd1d8cab
authored
Jul 14, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmiutils: New dll.
parent
a4717d0d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
70 additions
and
0 deletions
+70
-0
configure
configure
+9
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/wmiutils/Makefile.in
+13
-0
main.c
dlls/wmiutils/main.c
+43
-0
wmiutils.spec
dlls/wmiutils/wmiutils.spec
+4
-0
No files found.
configure
View file @
dd1d8cab
...
...
@@ -28041,6 +28041,14 @@ dlls/wmi/Makefile: dlls/wmi/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/wmi/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/wmiutils/Makefile"
test
"x
$enable_wmiutils
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
wmiutils"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/wmiutils/Makefile: dlls/wmiutils/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/wmiutils/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/wnaspi32/Makefile"
test
"x
$enable_wnaspi32
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
wnaspi32"
...
...
@@ -29791,6 +29799,7 @@ do
"dlls/wldap32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/wldap32/Makefile" ;;
"dlls/wldap32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/wldap32/tests/Makefile" ;;
"dlls/wmi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/wmi/Makefile" ;;
"dlls/wmiutils/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/wmiutils/Makefile" ;;
"dlls/wnaspi32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/wnaspi32/Makefile" ;;
"dlls/wow32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/wow32/Makefile" ;;
"dlls/ws2_32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ws2_32/Makefile" ;;
...
...
configure.ac
View file @
dd1d8cab
...
...
@@ -2436,6 +2436,7 @@ WINE_CONFIG_MAKEFILE([dlls/wintrust/tests/Makefile],[dlls/Maketest.rules],[dlls]
WINE_CONFIG_MAKEFILE([dlls/wldap32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/wldap32/tests/Makefile],[dlls/Maketest.rules],[dlls],[ALL_TEST_DIRS],[enable_tests])
WINE_CONFIG_MAKEFILE([dlls/wmi/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/wmiutils/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/wnaspi32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/wow32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/ws2_32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
...
...
dlls/wmiutils/Makefile.in
0 → 100644
View file @
dd1d8cab
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
wmiutils.dll
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/wmiutils/main.c
0 → 100644
View file @
dd1d8cab
/*
* Copyright 2009 Hans Leidekker 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 "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wmiutils
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
lpv
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinst
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
}
return
TRUE
;
}
dlls/wmiutils/wmiutils.spec
0 → 100644
View file @
dd1d8cab
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ stub DllRegisterServer
@ stub DllUnregisterServer
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment