hnetcfg: Stub implementation of the dll.
This commit is contained in:
parent
87fe0145c0
commit
a00aa0391d
|
@ -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
|
||||
|
|
|
@ -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" ;;
|
||||
|
|
|
@ -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])
|
||||
|
|
|
@ -78,6 +78,7 @@ BASEDIRS = \
|
|||
hhctrl.ocx \
|
||||
hid \
|
||||
hlink \
|
||||
hnetcfg \
|
||||
iccvid \
|
||||
icmp \
|
||||
ifsmgr.vxd \
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
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
|
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* 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;
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
@ stdcall -private DllCanUnloadNow()
|
||||
@ stdcall -private DllGetClassObject( ptr ptr ptr )
|
||||
@ stdcall -private DllRegisterServer()
|
||||
@ stdcall -private DllUnregisterServer()
|
Loading…
Reference in New Issue