diff options
author | Melanie Thielker | 2008-10-24 23:04:55 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-24 23:04:55 +0000 |
commit | 64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e (patch) | |
tree | a8398aa3c9234ff4d178ba2031e8180c605b1387 /OpenSim/Region/Interfaces | |
parent | * minor: eliminate some mono compiler warnings (diff) | |
download | opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.zip opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.tar.gz opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.tar.bz2 opensim-SC_OLD-64f9f03e9a3cb345ef85e1990bebc3a7cca41c9e.tar.xz |
Plumb some more
Diffstat (limited to 'OpenSim/Region/Interfaces')
-rw-r--r-- | OpenSim/Region/Interfaces/IGroupsModule.cs | 9 | ||||
-rw-r--r-- | OpenSim/Region/Interfaces/IMoneyModule.cs | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Interfaces/IGroupsModule.cs b/OpenSim/Region/Interfaces/IGroupsModule.cs index 17daf3e..8565e04 100644 --- a/OpenSim/Region/Interfaces/IGroupsModule.cs +++ b/OpenSim/Region/Interfaces/IGroupsModule.cs | |||
@@ -40,6 +40,15 @@ namespace OpenSim.Region.Interfaces | |||
40 | List<GroupRolesData> GroupRoleDataRequest(IClientAPI remoteClient, UUID groupID); | 40 | List<GroupRolesData> GroupRoleDataRequest(IClientAPI remoteClient, UUID groupID); |
41 | List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID); | 41 | List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID); |
42 | GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID); | 42 | GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID); |
43 | GroupMembershipData[] GetMembershipData(UUID UserID); | ||
43 | 44 | ||
45 | void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish); | ||
46 | |||
47 | void SetGroupAcceptNotices(IClientAPI remoteClient, UUID groupID, bool acceptNotices, bool listInProfile); | ||
48 | |||
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); | ||
51 | |||
52 | void SendAgentGroupDataUpdate(IClientAPI remoteClient); | ||
44 | } | 53 | } |
45 | } | 54 | } |
diff --git a/OpenSim/Region/Interfaces/IMoneyModule.cs b/OpenSim/Region/Interfaces/IMoneyModule.cs index 37caa39..5797af0 100644 --- a/OpenSim/Region/Interfaces/IMoneyModule.cs +++ b/OpenSim/Region/Interfaces/IMoneyModule.cs | |||
@@ -40,6 +40,8 @@ namespace OpenSim.Region.Interfaces | |||
40 | int GetBalance(IClientAPI client); | 40 | int GetBalance(IClientAPI client); |
41 | void ApplyUploadCharge(UUID agentID); | 41 | void ApplyUploadCharge(UUID agentID); |
42 | bool UploadCovered(IClientAPI client); | 42 | bool UploadCovered(IClientAPI client); |
43 | void ApplyGroupCreationCharge(UUID agentID); | ||
44 | bool GroupCreationCovered(IClientAPI client); | ||
43 | 45 | ||
44 | event ObjectPaid OnObjectPaid; | 46 | event ObjectPaid OnObjectPaid; |
45 | } | 47 | } |