mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 02:51:21 +00:00
[USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
This commit is contained in:
parent
f65034e760
commit
c2d0d784c7
20461 changed files with 0 additions and 1213965 deletions
55
include/psdk/mgmtapi.h
Normal file
55
include/psdk/mgmtapi.h
Normal file
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
mgmtapi.h - Header file for the SNMP Management API
|
||||
|
||||
Written by Filip Navara <xnavara@volny.cz>
|
||||
|
||||
References (2003-08-25):
|
||||
http://msdn.microsoft.com/library/en-us/snmp/snmp/snmp_reference.asp
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*/
|
||||
|
||||
#ifndef _MGMTAPI_H
|
||||
#define _MGMTAPI_H
|
||||
|
||||
#ifndef _SNMP_H
|
||||
#include <snmp.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define SNMP_MGMTAPI_TIMEOUT 40
|
||||
#define SNMP_MGMTAPI_SELECT_FDERRORS 41
|
||||
#define SNMP_MGMTAPI_TRAP_ERRORS 42
|
||||
#define SNMP_MGMTAPI_TRAP_DUPINIT 43
|
||||
#define SNMP_MGMTAPI_NOTRAPS 44
|
||||
#define SNMP_MGMTAPI_AGAIN 45
|
||||
#define SNMP_MGMTAPI_INVALID_CTL 46
|
||||
#define SNMP_MGMTAPI_INVALID_SESSION 47
|
||||
#define SNMP_MGMTAPI_INVALID_BUFFER 48
|
||||
#define MGMCTL_SETAGENTPORT 1
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
|
||||
typedef PVOID LPSNMP_MGR_SESSION;
|
||||
|
||||
BOOL WINSNMPAPI SnmpMgrClose(LPSNMP_MGR_SESSION);
|
||||
BOOL WINSNMPAPI SnmpMgrCtl(LPSNMP_MGR_SESSION,DWORD,LPVOID,DWORD,LPVOID,DWORD,LPDWORD);
|
||||
BOOL WINSNMPAPI SnmpMgrGetTrap(AsnObjectIdentifier*,AsnNetworkAddress*,AsnInteger*,AsnInteger*,AsnTimeticks*,SnmpVarBindList*);
|
||||
BOOL WINSNMPAPI SnmpMgrGetTrapEx(AsnObjectIdentifier*,AsnNetworkAddress*,AsnNetworkAddress*,AsnInteger*,AsnInteger*,AsnOctetString*,AsnTimeticks*,SnmpVarBindList*);
|
||||
BOOL WINSNMPAPI SnmpMgrOidToStr(AsnObjectIdentifier*,LPSTR*);
|
||||
LPSNMP_MGR_SESSION WINSNMPAPI SnmpMgrOpen(LPSTR,LPSTR,INT,INT);
|
||||
INT WINSNMPAPI SnmpMgrRequest(LPSNMP_MGR_SESSION,BYTE,SnmpVarBindList*,AsnInteger*,AsnInteger*);
|
||||
BOOL WINSNMPAPI SnmpMgrStrToOid(LPSTR,AsnObjectIdentifier*);
|
||||
BOOL WINSNMPAPI SnmpMgrTrapListen(HANDLE*);
|
||||
|
||||
#endif /* RC_INVOKED */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue