home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / gcc / !GCC / patches / DeskLib / h / Module < prev    next >
Encoding:
Text File  |  1994-10-03  |  904 b   |  32 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Module.h
  12.     Author:  Copyright © 1993 Jason Howat
  13.     Version: 1.00 (23 Nov 1993)
  14.     Purpose: Veneers for the OS_Module SWI.
  15. */
  16.  
  17. #ifndef __dl_module_h
  18. #define __dl_module_h
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24. extern os_error *Module_Claim(unsigned size, void **block);
  25. extern os_error *Module_Free(void *block);
  26.  
  27. #ifdef __cplusplus
  28.            }
  29. #endif
  30.  
  31. #endif
  32.