aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces
diff options
context:
space:
mode:
authorMelanie Thielker2008-10-25 01:42:43 +0000
committerMelanie Thielker2008-10-25 01:42:43 +0000
commit26643c4a9d057fd3a9084a71ffad9c8b688900ac (patch)
treee32657abc9c519133247f9c4f0a0dce8425dd622 /OpenSim/Region/Interfaces
parentFix a leak in the plumbing (diff)
downloadopensim-SC_OLD-26643c4a9d057fd3a9084a71ffad9c8b688900ac.zip
opensim-SC_OLD-26643c4a9d057fd3a9084a71ffad9c8b688900ac.tar.gz
opensim-SC_OLD-26643c4a9d057fd3a9084a71ffad9c8b688900ac.tar.bz2
opensim-SC_OLD-26643c4a9d057fd3a9084a71ffad9c8b688900ac.tar.xz
More plumbing and some wires
Diffstat (limited to 'OpenSim/Region/Interfaces')
-rw-r--r--OpenSim/Region/Interfaces/IGroupsModule.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Interfaces/IGroupsModule.cs b/OpenSim/Region/Interfaces/IGroupsModule.cs
index 8565e04..f5193c3 100644
--- a/OpenSim/Region/Interfaces/IGroupsModule.cs
+++ b/OpenSim/Region/Interfaces/IGroupsModule.cs
@@ -48,7 +48,9 @@ namespace OpenSim.Region.Interfaces
48 48
49 void GroupTitleUpdate(IClientAPI remoteClient, UUID GroupID, UUID TitleRoleID); 49 void GroupTitleUpdate(IClientAPI remoteClient, UUID GroupID, UUID TitleRoleID);
50 UUID CreateGroup(IClientAPI remoteClient, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish); 50 UUID CreateGroup(IClientAPI remoteClient, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish);
51 51
52 GroupNoticeData[] GroupNoticesListRequest(IClientAPI remoteClient, UUID GroupID);
53 void GroupNoticeRequest(IClientAPI remoteClient, UUID groupNoticeID);
52 void SendAgentGroupDataUpdate(IClientAPI remoteClient); 54 void SendAgentGroupDataUpdate(IClientAPI remoteClient);
53 } 55 }
54} 56}