inetmib1: Add stub for SnmpExtensionQuery.

This commit is contained in:
Juan Lang 2008-05-20 20:49:04 -07:00 committed by Alexandre Julliard
parent cca77db0a6
commit f451fefc6c
2 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,4 @@
@ stdcall SnmpExtensionInit(long ptr ptr)
@ stub SnmpExtensionInitEx
@ stub SnmpExtensionQuery
@ stdcall SnmpExtensionQuery(long ptr ptr ptr)
@ stub SnmpExtensionTrap

View file

@ -55,3 +55,11 @@ BOOL WINAPI SnmpExtensionInit(DWORD dwUptimeReference,
*phSubagentTrapEvent = NULL;
return TRUE;
}
BOOL WINAPI SnmpExtensionQuery(BYTE bPduType, SnmpVarBindList *pVarBindList,
AsnInteger32 *pErrorStatus, AsnInteger32 *pErrorIndex)
{
FIXME("(0x%02x, %p, %p, %p): stub\n", bPduType, pVarBindList,
pErrorStatus, pErrorIndex);
return FALSE;
}