/* Copyright 1997 Acorn Computers Ltd
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/***************************************************/
/* File   : RMA.h                                  */
/*                                                 */
/* Purpose: The browser needs to claim RMA space   */
/*          for some of the grottier protocols out */
/*          there now and again. There are a       */
/*          sufficiently large number of claims to */
/*          warrant a thin veneer over claim and   */
/*          release of RMA to keep track of blocks */
/*          and make sure leaks don't occur.       */
/*                                                 */
/* Author : A.D.Hodgkinson                         */
/*                                                 */
/* History: 24-Oct-97: Created.                    */
/***************************************************/

/* Function prototypes */

_kernel_oserror * rma_claim    (browser_data * allocator, int size, void ** rma_block);
_kernel_oserror * rma_release  (browser_data * allocator, void * rma_block);

void              rma_shutdown (void);