admUpdateSpace
Description
Updates the space properties (takes space key and an instance of CSpace struct as parameters).
Return Type
Updated instance of CSpace
Example
Sets new description, name and key to a space with key = "KEY".
CSpace space;
space.description = "New Space description";
space.name = "New Name";
space.key = "NSK";
return admUpdateSpace("KEY", space);
Sets new description, name and key to a space with key = "KEY".
See also
Peacock