2001-04-23 18:20:55 +00:00
|
|
|
/*
|
|
|
|
* Heap definitions
|
|
|
|
*
|
|
|
|
* Copyright 2001 Francois Gouget.
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-04-23 18:20:55 +00:00
|
|
|
*/
|
|
|
|
#ifndef __WINE_MALLOC_H
|
|
|
|
#define __WINE_MALLOC_H
|
2008-12-11 21:37:34 +00:00
|
|
|
|
2019-08-09 15:32:04 +00:00
|
|
|
#include <corecrt.h>
|
2022-12-08 05:14:11 +00:00
|
|
|
#include <corecrt_malloc.h>
|
2001-04-23 18:20:55 +00:00
|
|
|
|
|
|
|
/* heap function constants */
|
|
|
|
#define _HEAPEMPTY -1
|
|
|
|
#define _HEAPOK -2
|
|
|
|
#define _HEAPBADBEGIN -3
|
|
|
|
#define _HEAPBADNODE -4
|
|
|
|
#define _HEAPEND -5
|
|
|
|
#define _HEAPBADPTR -6
|
|
|
|
|
|
|
|
#define _FREEENTRY 0
|
|
|
|
#define _USEDENTRY 1
|
|
|
|
|
2004-06-25 01:19:15 +00:00
|
|
|
#ifndef _HEAPINFO_DEFINED
|
|
|
|
#define _HEAPINFO_DEFINED
|
2001-04-23 18:20:55 +00:00
|
|
|
typedef struct _heapinfo
|
|
|
|
{
|
|
|
|
int* _pentry;
|
2004-06-25 01:19:15 +00:00
|
|
|
size_t _size;
|
2001-04-23 18:20:55 +00:00
|
|
|
int _useflag;
|
|
|
|
} _HEAPINFO;
|
2004-06-25 01:19:15 +00:00
|
|
|
#endif /* _HEAPINFO_DEFINED */
|
2001-04-23 18:20:55 +00:00
|
|
|
|
2008-12-15 15:20:08 +00:00
|
|
|
#ifdef __i386__
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP unsigned int* __cdecl __p__amblksiz(void);
|
2005-09-19 14:41:25 +00:00
|
|
|
#define _amblksiz (*__p__amblksiz());
|
2008-12-15 15:20:08 +00:00
|
|
|
#else
|
|
|
|
extern unsigned int _amblksiz;
|
|
|
|
#endif
|
2005-09-19 14:41:25 +00:00
|
|
|
|
2001-04-23 18:20:55 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP int __cdecl _heapadd(void*,size_t);
|
|
|
|
_ACRTIMP int __cdecl _heapchk(void);
|
|
|
|
_ACRTIMP int __cdecl _heapmin(void);
|
|
|
|
_ACRTIMP int __cdecl _heapset(unsigned int);
|
|
|
|
_ACRTIMP size_t __cdecl _heapused(size_t*,size_t*);
|
|
|
|
_ACRTIMP int __cdecl _heapwalk(_HEAPINFO*);
|
2007-07-28 00:02:23 +00:00
|
|
|
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP size_t __cdecl _get_sbh_threshold(void);
|
|
|
|
_ACRTIMP int __cdecl _set_sbh_threshold(size_t size);
|
2005-09-23 10:07:05 +00:00
|
|
|
|
2022-04-25 08:46:39 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
void *_alloca(size_t size);
|
|
|
|
#endif
|
|
|
|
|
2001-04-23 18:20:55 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-04-17 02:40:21 +00:00
|
|
|
# ifdef __GNUC__
|
|
|
|
# define _alloca(x) __builtin_alloca((x))
|
|
|
|
# define alloca(x) __builtin_alloca((x))
|
2022-04-25 08:46:39 +00:00
|
|
|
# elif defined(_MSC_VER)
|
|
|
|
# define alloca(x) _alloca((x))
|
2003-04-17 02:40:21 +00:00
|
|
|
# endif
|
2001-04-23 18:20:55 +00:00
|
|
|
|
|
|
|
#endif /* __WINE_MALLOC_H */
|