mirror of
https://github.com/opensim/opensim.git
synced 2026-07-30 05:13:54 +08:00
13 lines
368 B
C#
13 lines
368 B
C#
///////////////////////////////////////////////////////////////////
|
|
//
|
|
// (c) Careminster LImited, Melanie Thielker and the Meta7 Team
|
|
//
|
|
// This file is not open source. All rights reserved
|
|
// Mod 2
|
|
public interface ISnmpModule
|
|
{
|
|
void Alert(string message);
|
|
void Trap(int code,string simname,string Message);
|
|
void ColdStart(int step , string simname);
|
|
}
|