mirror of
https://github.com/opensim/opensim.git
synced 2026-05-26 20:15:35 +08:00
The functions implemented are: llListen llListenControl llListenRemove llOpenRemoteDataChannel llCloseRemoteDataChannel llRemoteDataReply The events implemented are: listen remote_data
15 lines
528 B
C#
15 lines
528 B
C#
using libsecondlife;
|
|
using OpenSim.Region.Environment.Modules;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IWorldComm
|
|
{
|
|
int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg);
|
|
void DeliverMessage(string sourceItemID, int type, int channel, string name, string msg);
|
|
bool HasMessages();
|
|
ListenerInfo GetNextMessage();
|
|
void ListenControl(int handle, int active);
|
|
void ListenRemove(int handle);
|
|
}
|
|
} |