Commit 2cc8b7e5 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

inetmib1: Add stub for SnmpExtensionInit.

parent 17231579
@ stub SnmpExtensionInit
@ stdcall SnmpExtensionInit(long ptr ptr)
@ stub SnmpExtensionInitEx
@ stub SnmpExtensionQuery
@ stub SnmpExtensionTrap
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment