home *** CD-ROM | disk | FTP | other *** search
- /*
- #### # # # #
- # # # # # 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.00 (23 Nov 1993)
- Purpose: Veneers for the OS_Module SWI.
- */
-
- #ifndef __dl_module_h
- #define __dl_module_h
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- extern os_error *Module_Claim(unsigned size, void **block);
- extern os_error *Module_Free(void *block);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-