aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
blob: 5143b21a81ae5ec8f5c43982adf646d9df5ea2d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
///////////////////////////////////////////////////////////////////
//
// (c) Careminster LImited, Melanie Thielker and the Meta7 Team
//
// This file is not open source. All rights reserved
// Mod 2

using OpenSim.Region.Framework.Scenes;

public interface ISnmpModule
{
    void Trap(int code, string Message, Scene scene);
    void Critcal(string Message, Scene scene);
    void Warning(string Message, Scene scene);
    void Major(string Message, Scene scene);
    void ColdStart(int step , Scene scene);
    void Shutdown(int step , Scene scene);
}