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
a00aa039
Commit
a00aa039
authored
Jun 18, 2007
by
Jeff Latimer
Committed by
Alexandre Julliard
Jun 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hnetcfg: Stub implementation of the dll.
parent
87fe0145
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
110 additions
and
0 deletions
+110
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/hnetcfg/Makefile.in
+13
-0
hnetcfg.c
dlls/hnetcfg/hnetcfg.c
+86
-0
hnetcfg.spec
dlls/hnetcfg/hnetcfg.spec
+4
-0
No files found.
Makefile.in
View file @
a00aa039
...
...
@@ -242,6 +242,7 @@ ALL_MAKEFILES = \
dlls/hid/Makefile
\
dlls/hlink/Makefile
\
dlls/hlink/tests/Makefile
\
dlls/hnetcfg/Makefile
\
dlls/iccvid/Makefile
\
dlls/icmp/Makefile
\
dlls/ifsmgr.vxd/Makefile
\
...
...
@@ -596,6 +597,7 @@ dlls/hhctrl.ocx/Makefile: dlls/hhctrl.ocx/Makefile.in dlls/Makedll.rules
dlls/hid/Makefile
:
dlls/hid/Makefile.in dlls/Makedll.rules
dlls/hlink/Makefile
:
dlls/hlink/Makefile.in dlls/Makedll.rules
dlls/hlink/tests/Makefile
:
dlls/hlink/tests/Makefile.in dlls/Maketest.rules
dlls/hnetcfg/Makefile
:
dlls/hnetcfg/Makefile.in dlls/Makedll.rules
dlls/iccvid/Makefile
:
dlls/iccvid/Makefile.in dlls/Makedll.rules
dlls/icmp/Makefile
:
dlls/icmp/Makefile.in dlls/Makedll.rules
dlls/ifsmgr.vxd/Makefile
:
dlls/ifsmgr.vxd/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
a00aa039
...
...
@@ -20548,6 +20548,8 @@ ac_config_files="$ac_config_files dlls/hlink/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/hlink/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/hnetcfg/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/iccvid/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/icmp/Makefile"
...
...
@@ -21708,6 +21710,7 @@ do
"dlls/hid/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/hid/Makefile" ;;
"dlls/hlink/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/hlink/Makefile" ;;
"dlls/hlink/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/hlink/tests/Makefile" ;;
"dlls/hnetcfg/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/hnetcfg/Makefile" ;;
"dlls/iccvid/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/iccvid/Makefile" ;;
"dlls/icmp/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/icmp/Makefile" ;;
"dlls/ifsmgr.vxd/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ifsmgr.vxd/Makefile" ;;
...
...
configure.ac
View file @
a00aa039
...
...
@@ -1525,6 +1525,7 @@ AC_CONFIG_FILES([dlls/hhctrl.ocx/Makefile])
AC_CONFIG_FILES([dlls/hid/Makefile])
AC_CONFIG_FILES([dlls/hlink/Makefile])
AC_CONFIG_FILES([dlls/hlink/tests/Makefile])
AC_CONFIG_FILES([dlls/hnetcfg/Makefile])
AC_CONFIG_FILES([dlls/iccvid/Makefile])
AC_CONFIG_FILES([dlls/icmp/Makefile])
AC_CONFIG_FILES([dlls/ifsmgr.vxd/Makefile])
...
...
dlls/Makefile.in
View file @
a00aa039
...
...
@@ -78,6 +78,7 @@ BASEDIRS = \
hhctrl.ocx
\
hid
\
hlink
\
hnetcfg
\
iccvid
\
icmp
\
ifsmgr.vxd
\
...
...
dlls/hnetcfg/Makefile.in
0 → 100644
View file @
a00aa039
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
hnetcfg.dll
IMPORTS
=
kernel32
C_SRCS
=
\
hnetcfg.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/hnetcfg/hnetcfg.c
0 → 100644
View file @
a00aa039
/*
* Copyright (C) 2007 Jeff Latimer
*
* 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 "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
hnetcfg
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hInstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hInstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
}
return
TRUE
;
}
/******************************************************************
* DllCanUnloadNow (HNETCFG.@)
*
*
*/
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
FIXME
(
":stub
\n
"
);
return
S_OK
;
}
/******************************************************************
* DllGetClassObject (HNETCFG.@)
*
*
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%s,%s,%p)
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
E_NOINTERFACE
;
}
/******************************************************************
* DllRegisterServer (HNETCFG.@)
*
*
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
S_OK
;
}
/******************************************************************
* DllUnregisterServer (HNETCFG.@)
*
*
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
S_OK
;
}
dlls/hnetcfg/hnetcfg.spec
0 → 100644
View file @
a00aa039
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject( ptr ptr ptr )
@ stdcall -private DllRegisterServer()
@ stdcall -private 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