home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 April / PCWorld_2000-04_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / malloc.h < prev    next >
C/C++ Source or Header  |  1999-11-07  |  2KB  |  79 lines

  1. /*
  2.  * malloc.h
  3.  *
  4.  * Support for programs which want to use malloc.h to get memory management
  5.  * functions. Unless you absolutely need some of these functions and they are
  6.  * not in the ANSI headers you should use the ANSI standard header files
  7.  * instead.
  8.  *
  9.  * This file is part of the Mingw32 package.
  10.  *
  11.  * Contributors:
  12.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  13.  *
  14.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  15.  *
  16.  *  This source code is offered for use in the public domain. You may
  17.  *  use, modify or distribute it freely.
  18.  *
  19.  *  This code is distributed in the hope that it will be useful but
  20.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  21.  *  DISCLAMED. This includes but is not limited to warranties of
  22.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23.  *
  24.  * $Revision: 1.2 $
  25.  * $Author: khan $
  26.  * $Date: 1998/12/29 21:41:39 $
  27.  *
  28.  */
  29.  
  30. #ifndef    __STRICT_ANSI__
  31.  
  32. #ifndef _MALLOC_H_
  33. #define _MALLOC_H_
  34.  
  35. /* All the headers include this file. */
  36. #include <_mingw.h>
  37.  
  38. #include <stdlib.h>
  39.  
  40. #ifndef RC_INVOKED
  41.  
  42. /*
  43.  * The structure used to walk through the heap with _heapwalk.
  44.  * TODO: This is a guess at the internals of this structure.
  45.  */
  46. typedef    struct _heapinfo
  47. {
  48.     void*        ptr;
  49.     unsigned int    size;
  50.     int        in_use;
  51. } _HEAPINFO;
  52.  
  53.  
  54. #ifdef    __cplusplus
  55. extern "C" {
  56. #endif
  57.  
  58. int    _heapwalk (_HEAPINFO* pHeapinfo);
  59.  
  60. #ifndef    _NO_OLDNAMES
  61. int    heapwalk (_HEAPINFO* pHeapinfo);
  62. #endif    /* Not _NO_OLDNAMES */
  63.  
  64. int    _heapchk ();    /* Verify heap integrety. */
  65. int    _heapmin ();    /* Return unused heap to the OS. */
  66. int    _heapset (unsigned int unFill);
  67. size_t    _msize (void* pBlock);
  68.  
  69. #ifdef __cplusplus
  70. }
  71. #endif
  72.  
  73. #endif    RC_INVOKED
  74.  
  75. #endif /* Not _MALLOC_H_ */
  76.  
  77. #endif /* Not __STRICT_ANSI__ */
  78.  
  79.