Un-const string retrievals (#769)

This commit is contained in:
Michael Flaherty 2018-02-20 10:38:17 -08:00 committed by Asher Baker
parent 41ffe975fd
commit 2a8c390498

View File

@ -221,7 +221,7 @@ methodmap AdminId {
// @param maxlength Maximum size of the output name buffer. // @param maxlength Maximum size of the output name buffer.
// @return A GroupId index and a name pointer, or // @return A GroupId index and a name pointer, or
// INVALID_GROUP_ID and NULL if an error occurred. // INVALID_GROUP_ID and NULL if an error occurred.
public native GroupId GetGroup(int index, const char[] name, int maxlength); public native GroupId GetGroup(int index, char[] name, int maxlength);
// Sets a password on an admin. // Sets a password on an admin.
// //
@ -565,7 +565,7 @@ native int GetAdminGroupCount(AdminId id);
* @return A GroupId index and a name pointer, or * @return A GroupId index and a name pointer, or
* INVALID_GROUP_ID and NULL if an error occurred. * INVALID_GROUP_ID and NULL if an error occurred.
*/ */
native GroupId GetAdminGroup(AdminId id, int index, const char[] name, int maxlength); native GroupId GetAdminGroup(AdminId id, int index, char[] name, int maxlength);
/** /**
* Sets a password on an admin. * Sets a password on an admin.