MIBEntryDelete callback function

The routing protocol calls MIBEntryDelete to execute a Delete request of the router manager or a peer protocol DLL. Implement this function to handle SNMP-style requests.

Syntax

DWORD CALLBACK MIBEntryDelete(
  _In_ DWORD dwRoutingPid,
  _In_ DWORD InputDataSize,
  _In_ PVOID InputData
);

Parameters

  • dwRoutingPid [in]
    Specifies the identifier of the DLL that should process this request. This parameter can be the identifier of the router manager or the identifier of a routing protocol.

  • InputDataSize [in]
    Specifies the size, in bytes, of the data to pass with the Delete request.

  • InputData [in]
    Pointer to the data to pass with the Delete request.

Return value

If the function succeeds, the return value is NO_ERROR.

If the function fails, the return value is one of the following values.

Value Description
ERROR_CAN_NOT_COMPLETE

The attempt to delete the MIB entry failed.

ERROR_INVALID_PARAMETER

The size or content of the input data is incompatible with the request.

 

 

Requirements

Minimum supported client

None supported

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Routprot.h

See also

Protocol Identifiers

MIBEntryCreate