mgmtapi.h (5.2.3790.3959-Windows 5.0) | | mgmtapi.h (6.0.6000.16386-Windows 6.0) |
| | |
skipping to change at line 75 | | skipping to change at line 75 |
| | |
/////////////////////////////////////////////////////////////////////////////// | | /////////////////////////////////////////////////////////////////////////////// |
// // | | // // |
// MGMT API prototypes // | | // MGMT API prototypes // |
// // | | // // |
/////////////////////////////////////////////////////////////////////////////// | | /////////////////////////////////////////////////////////////////////////////// |
| | |
LPSNMP_MGR_SESSION | | LPSNMP_MGR_SESSION |
SNMP_FUNC_TYPE | | SNMP_FUNC_TYPE |
SnmpMgrOpen( | | SnmpMgrOpen( |
|
IN LPSTR lpAgentAddress, // Name/address of target agent | | __in_opt LPSTR lpAgentAddress, // Name/address of target agent |
IN LPSTR lpAgentCommunity, // Community for target agent | | __in_opt LPSTR lpAgentCommunity, // Community for target agent |
IN INT nTimeOut, // Comm time-out in milliseconds | | IN INT nTimeOut, // Comm time-out in milliseconds |
IN INT nRetries // Comm time-out/retry count | | IN INT nRetries // Comm time-out/retry count |
); | | ); |
| | |
BOOL | | BOOL |
SNMP_FUNC_TYPE | | SNMP_FUNC_TYPE |
SnmpMgrCtl( | | SnmpMgrCtl( |
LPSNMP_MGR_SESSION session, // pointer to the MGMTAPI session | | LPSNMP_MGR_SESSION session, // pointer to the MGMTAPI session |
DWORD dwCtlCode, // control code for the command requ
ested | | DWORD dwCtlCode, // control code for the command requ
ested |
LPVOID lpvInBuffer, // buffer with the input parameters
for the operation | | LPVOID lpvInBuffer, // buffer with the input parameters
for the operation |
| | |
skipping to change at line 112 | | skipping to change at line 112 |
IN LPSNMP_MGR_SESSION session, // SNMP session pointer | | IN LPSNMP_MGR_SESSION session, // SNMP session pointer |
IN BYTE requestType, // Get, GetNext, or Set | | IN BYTE requestType, // Get, GetNext, or Set |
IN OUT RFC1157VarBindList *variableBindings, // Varible bindings | | IN OUT RFC1157VarBindList *variableBindings, // Varible bindings |
OUT AsnInteger *errorStatus, // Result error status | | OUT AsnInteger *errorStatus, // Result error status |
OUT AsnInteger *errorIndex // Result error index | | OUT AsnInteger *errorIndex // Result error index |
); | | ); |
| | |
BOOL | | BOOL |
SNMP_FUNC_TYPE | | SNMP_FUNC_TYPE |
SnmpMgrStrToOid( | | SnmpMgrStrToOid( |
|
IN LPSTR string, // OID string to be converted | | __in_opt LPSTR string, // OID string to be converted |
OUT AsnObjectIdentifier *oid // OID internal representation | | OUT AsnObjectIdentifier *oid // OID internal representation |
); | | ); |
| | |
BOOL | | BOOL |
SNMP_FUNC_TYPE | | SNMP_FUNC_TYPE |
SnmpMgrOidToStr( | | SnmpMgrOidToStr( |
IN AsnObjectIdentifier *oid, // OID to be converted | | IN AsnObjectIdentifier *oid, // OID to be converted |
|
OUT LPSTR *string // OID string representation | | __deref_opt_out LPSTR *string // OID string representation |
); | | ); |
| | |
BOOL | | BOOL |
SNMP_FUNC_TYPE | | SNMP_FUNC_TYPE |
SnmpMgrTrapListen( | | SnmpMgrTrapListen( |
OUT HANDLE *phTrapAvailable // Event indicating trap available | | OUT HANDLE *phTrapAvailable // Event indicating trap available |
); | | ); |
| | |
BOOL | | BOOL |
SNMP_FUNC_TYPE | | SNMP_FUNC_TYPE |
| | |
End of changes. 3 change blocks. |
4 lines changed or deleted | | 4 lines changed or added |
|