blob: d37a01bd2170cdbd84e9c2f6989969e494242a3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
///////////////////////////////////////////////////////////////////
//
// (c) Careminster LImited, Melanie Thielker and the Meta7 Team
//
// This file is not open source. All rights reserved
// Mod 2
public interface ISnmpModule
{
void Trap(int code,string simname,string Message);
void ColdStart(int step , string simname);
}
|