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
0c1bd482
Commit
0c1bd482
authored
May 01, 2012
by
Stefan Leichter
Committed by
Alexandre Julliard
May 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wsnmp32: New stub dll.
parent
d3068976
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
96 additions
and
0 deletions
+96
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/wsnmp32/Makefile.in
+5
-0
wsnmp32.c
dlls/wsnmp32/wsnmp32.c
+41
-0
wsnmp32.spec
dlls/wsnmp32/wsnmp32.spec
+48
-0
No files found.
configure
View file @
0c1bd482
...
...
@@ -15462,6 +15462,7 @@ wine_fn_config_dll ws2_32 enable_ws2_32 implib
wine_fn_config_test dlls/ws2_32/tests ws2_32_test
wine_fn_config_dll wshom.ocx enable_wshom_ocx
wine_fn_config_test dlls/wshom.ocx/tests wshom.ocx_test
wine_fn_config_dll wsnmp32 enable_wsnmp32
wine_fn_config_dll wsock32 enable_wsock32 implib
wine_fn_config_dll wtsapi32 enable_wtsapi32 implib
wine_fn_config_dll wuapi enable_wuapi
...
...
configure.ac
View file @
0c1bd482
...
...
@@ -2950,6 +2950,7 @@ WINE_CONFIG_DLL(ws2_32,,[implib])
WINE_CONFIG_TEST(dlls/ws2_32/tests)
WINE_CONFIG_DLL(wshom.ocx)
WINE_CONFIG_TEST(dlls/wshom.ocx/tests)
WINE_CONFIG_DLL(wsnmp32)
WINE_CONFIG_DLL(wsock32,,[implib])
WINE_CONFIG_DLL(wtsapi32,,[implib])
WINE_CONFIG_DLL(wuapi)
...
...
dlls/wsnmp32/Makefile.in
0 → 100644
View file @
0c1bd482
MODULE
=
wsnmp32.dll
C_SRCS
=
wsnmp32.c
@MAKE_DLL_RULES@
dlls/wsnmp32/wsnmp32.c
0 → 100644
View file @
0c1bd482
/*
* Copyright 2012 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
(
wsnmp32
);
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/wsnmp32/wsnmp32.spec
0 → 100644
View file @
0c1bd482
100 stub SnmpGetTranslateMode
101 stub SnmpSetTranslateMode
102 stub SnmpGetRetransmitMode
103 stub SnmpSetRetransmitMode
104 stub SnmpGetTimeout
105 stub SnmpSetTimeout
106 stub SnmpSetRetry
107 stub SnmpGetRetry
108 stub _SnmpConveyAgentAddress@4
109 stub _SnmpSetAgentAddress@4
120 stub SnmpGetVendorInfo
200 stub SnmpStartup
201 stub SnmpCleanup
202 stub SnmpOpen
203 stub SnmpClose
204 stub SnmpSendMsg
205 stub SnmpRecvMsg
206 stub SnmpRegister
220 stub SnmpCreateSession
221 stub SnmpListen
222 stub SnmpCancelMsg
300 stub SnmpStrToEntity
301 stub SnmpEntityToStr
302 stub SnmpFreeEntity
320 stub SnmpSetPort
400 stub SnmpStrToContext
401 stub SnmpContextToStr
402 stub SnmpFreeContext
500 stub SnmpCreatePdu
501 stub SnmpGetPduData
502 stub SnmpSetPduData
503 stub SnmpDuplicatePdu
504 stub SnmpFreePdu
600 stub SnmpCreateVbl
601 stub SnmpDuplicateVbl
602 stub SnmpFreeVbl
603 stub SnmpCountVbl
604 stub SnmpGetVb
605 stub SnmpSetVb
606 stub SnmpDeleteVb
900 stub SnmpFreeDescriptor
901 stub SnmpEncodeMsg
902 stub SnmpDecodeMsg
903 stub SnmpStrToOid
904 stub SnmpOidToStr
905 stub SnmpOidCopy
906 stub SnmpOidCompare
999 stub SnmpGetLastError
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