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
2cc8b7e5
Commit
2cc8b7e5
authored
May 20, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Jun 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetmib1: Add stub for SnmpExtensionInit.
parent
17231579
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
inetmib1.spec
dlls/inetmib1/inetmib1.spec
+1
-1
main.c
dlls/inetmib1/main.c
+10
-0
No files found.
dlls/inetmib1/inetmib1.spec
View file @
2cc8b7e5
@ st
ub SnmpExtensionInit
@ st
dcall SnmpExtensionInit(long ptr ptr)
@ stub SnmpExtensionInitEx
@ stub SnmpExtensionQuery
@ stub SnmpExtensionTrap
dlls/inetmib1/main.c
View file @
2cc8b7e5
...
...
@@ -22,6 +22,7 @@
#include "windef.h"
#include "winbase.h"
#include "snmp.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
inetmib1
);
...
...
@@ -45,3 +46,12 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
BOOL
WINAPI
SnmpExtensionInit
(
DWORD
dwUptimeReference
,
HANDLE
*
phSubagentTrapEvent
,
AsnObjectIdentifier
*
pFirstSupportedRegion
)
{
FIXME
(
"(%d, %p, %p): stub
\n
"
,
dwUptimeReference
,
phSubagentTrapEvent
,
pFirstSupportedRegion
);
*
phSubagentTrapEvent
=
NULL
;
return
TRUE
;
}
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