Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9aeda0df
Commit
9aeda0df
authored
Dec 22, 2011
by
Stefan Leichter
Committed by
Alexandre Julliard
Dec 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dhcpcsvc: New stub dll.
parent
8caa0a05
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
93 additions
and
0 deletions
+93
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/dhcpcsvc/Makefile.in
+5
-0
dhcpcsvc.c
dlls/dhcpcsvc/dhcpcsvc.c
+41
-0
dhcpcsvc.spec
dlls/dhcpcsvc/dhcpcsvc.spec
+45
-0
No files found.
configure
View file @
9aeda0df
...
...
@@ -14988,6 +14988,7 @@ wine_fn_config_test dlls/ddraw/tests ddraw_test
wine_fn_config_dll ddrawex enable_ddrawex
wine_fn_config_test dlls/ddrawex/tests ddrawex_test
wine_fn_config_dll devenum enable_devenum po
wine_fn_config_dll dhcpcsvc enable_dhcpcsvc
wine_fn_config_dll dinput enable_dinput implib,po,staticimplib
wine_fn_config_test dlls/dinput/tests dinput_test
wine_fn_config_dll dinput8 enable_dinput8 implib
...
...
configure.ac
View file @
9aeda0df
...
...
@@ -2497,6 +2497,7 @@ WINE_CONFIG_TEST(dlls/ddraw/tests)
WINE_CONFIG_DLL(ddrawex)
WINE_CONFIG_TEST(dlls/ddrawex/tests)
WINE_CONFIG_DLL(devenum,,[po])
WINE_CONFIG_DLL(dhcpcsvc)
WINE_CONFIG_DLL(dinput,,[implib,po,staticimplib])
WINE_CONFIG_TEST(dlls/dinput/tests)
WINE_CONFIG_DLL(dinput8,,[implib])
...
...
dlls/dhcpcsvc/Makefile.in
0 → 100644
View file @
9aeda0df
MODULE
=
dhcpcsvc.dll
C_SRCS
=
dhcpcsvc.c
@MAKE_DLL_RULES@
dlls/dhcpcsvc/dhcpcsvc.c
0 → 100644
View file @
9aeda0df
/*
* Copyright 2011 Stefan Leichter
*
* 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
(
dhcpcsvc
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
TRACE
(
"%p, %u, %p
\n
"
,
hinst
,
reason
,
reserved
);
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/dhcpcsvc/dhcpcsvc.spec
0 → 100644
View file @
9aeda0df
@ stub DhcpAcquireParameters
@ stub DhcpAcquireParametersByBroadcast
@ stub DhcpCApiCleanup
@ stub DhcpCApiInitialize
@ stub DhcpDeRegisterConnectionStateNotification
@ stub DhcpDeRegisterOptions
@ stub DhcpDeRegisterParamChange
@ stub DhcpDelPersistentRequestParams
@ stub DhcpEnumClasses
@ stub DhcpFallbackRefreshParams
@ stub DhcpFreeMem
@ stub DhcpGetDhcpServicedConnctions
@ stub DhcpGetNotificationStatus
@ stub DhcpHandlePnPEvent
@ stub DhcpLeaseIpAddress
@ stub DhcpLeaseIpAddressEx
@ stub DhcpNotifyConfigChange
@ stub DhcpNotifyConfigChangeEx
@ stub DhcpNotifyMediaReconnected
@ stub DhcpOpenGlobalEvent
@ stub DhcpPersistentRequestParams
@ stub DhcpQueryHWInfo
@ stub DhcpRegisterConnectionStateNotification
@ stub DhcpRegisterOptions
@ stub DhcpRegisterParamChange
@ stub DhcpReleaseIpAddressLease
@ stub DhcpReleaseIpAddressLeaseEx
@ stub DhcpReleaseParameters
@ stub DhcpRemoveDNSRegistration
@ stub DhcpRenewIpAddressLease
@ stub DhcpRenewIpAddressLeaseEx
@ stub DhcpRequestCachedParams
@ stub DhcpRequestOptions
@ stub DhcpRequestParams
@ stub DhcpSetMSFTVendorSpecificOptions
@ stub DhcpStaticRefreshParams
@ stub DhcpUndoRequestParams
@ stub McastApiCleanup
@ stub McastApiStartup
@ stub McastEnumerateScopes
@ stub McastGenUID
@ stub McastReleaseAddress
@ stub McastRenewAddress
@ stub McastRequestAddress
@ stub ServiceMain
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