2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
14 #include <afs/param.h>
18 #include "TaAfsAdmSvrClientInternal.h"
22 * ROUTINES ___________________________________________________________________
26 BOOL ADMINAPI
asc_CellChange (UINT_PTR idClient
, ASID idCell
, LPAFSADMSVR_CHANGECELL_PARAMS pChange
, ULONG
*pStatus
)
33 if ((rc
= AfsAdmSvr_ChangeCell (idClient
, idCell
, pChange
, &status
)) != FALSE
)
35 // If we succeeded in changing this cell's properties, get the
36 // newest values for our cache.
39 rc
= asc_ObjectPropertiesGet (idClient
, GET_ALL_DATA
, idCell
, idCell
, &Properties
, &status
);
45 status
= RPC_S_CALL_FAILED_DNE
;
55 BOOL ADMINAPI
asc_CellRefreshRateSet (UINT_PTR idClient
, ASID idCell
, ULONG cminRefreshRate
, ULONG
*pStatus
)
62 rc
= AfsAdmSvr_SetRefreshRate (idClient
, idCell
, cminRefreshRate
, &status
);
67 status
= RPC_S_CALL_FAILED_DNE
;