/*
    ####             #    #     # #
    #   #            #    #       #          The FreeWare C library for 
    #   #  ##   ###  #  # #     # ###             RISC OS machines
    #   # #  # #     # #  #     # #  #   ___________________________________
    #   # ####  ###  ##   #     # #  #                                      
    #   # #        # # #  #     # #  #    Please refer to the accompanying
    ####   ### ####  #  # ##### # ###    documentation for conditions of use
    ________________________________________________________________________

    File:    Module.h
    Author:  Copyright  1993 Jason Howat
    Version: 1.01 (15 Oct 1995)
    Purpose: Veneers for the Desk_OS_Module SWI.
    History: 1.00 (23 Nov 1993) JH
             1.01 (15 Oct 1995) JS Added #include of Core.h
*/


#ifndef __Desk_Module_h
#define __Desk_Module_h

#ifdef __cplusplus
	extern "C" {
#endif

#ifndef __Desk_Core_h
#include "Desk.Core.h"
#endif


extern void	Desk_Module_Claim(unsigned size, void **block);
extern void	Desk_Module_Free(void *block);

#ifdef __cplusplus
}
#endif

#endif
