Sun Oct 16 13:29:07 1994 Alexandre Julliard (julliard@lamisun.epfl.ch) * [controls/button.c] Implemented WM_GETDLGCODE, WM_SETFONT, BM_SETSTYLE, BM_SETCHECK, BM_SETSTATE. Implemented default button painting. Optimised redrawing. Fixed owner-draw buttons. * [controls/static.c] Implemented WM_SETFONT. A few optimisations in painting code. Bug fix for SS_SIMPLE controls. * [if1632/callback.c] Preliminary GetCodeHandle(). * [if1632/gdi.spec] Changed 'pascal' to 'pascal16' everywhere it's needed. * [include/windows.h] Fixed a few data structures. * [memory/heap.c] Bug fix in HEAP_ReAlloc(). * [misc/cursor.c] Fixed SetCursor(). * [objects/bitblt.c] Fixed PatBlt() when using BLACKNESS or WHITENESS codes. * [objects/font.c] Better font mapping code. Implemented GetTextFace(). * [objects/region.c] Bug fix in REGION_MakePixmap(). Faster region copying. * [objects/text.c] Implemented ExtTextOut(). Implemented DT_NOCLIP style for DrawText(). * [windows/dc.c] Free the bitmap when deleting a memory DC. * [windows/dce.c] Added support for windows that have no associated X window. Implemented DCX_CLIPSIBLINGS and DCX_PARENTCLIP in GetDCEx(). * [windows/defdlg.c] Implemented default push button handling and DM_SETDEFID. Implemented WM_NEXTDLGCTL. * [windows/dialog.c] Implemented default push button handling. Beginning of a keyboard interface in dialogs (does not really work yet). Fixed dialogs that use a special font. * [windows/event.c] [windows/focus.c] Added support for non-X windows. * [windows/graphics.c] Rewritten FloodFill() and implemented ExtFloodFill(). * [windows/message.c] Cleaner hardware messages and X events handling. * [windows/defwnd.c] [windows/painting.c] Implemented WM_SETREDRAW. * [windows/win.c] Only create an X window for top-level windows, or for the desktop. Child windows now use their parent's drawable. * [windows/winpos.c] Beginning of support for non-X windows (still somewhat broken). Implemented *DeferWindowPos(). * [*/Imakefile] Cleaned up some Imakefiles. Moved dc.c from windows/ to objects/. Moved cursor.c from misc/ to windows/. Sun Oct 16 12:21:52 1994 Michael Patra <micky@marie.physik.tu-berlin.d400.de> * [include/debug.h] [include/stddebug.h] [*/*.c] Rewritten all the calls to printf for displaying debug-information (messages like "LoadImage: loading SOL (SOL.EXE)" etc.) Added option "-debugmsg" to Wine. Example: "-debugmsg +all" will turn all these messages on, "-debugmsg -dll" will turn all messages concerning DLLs off. * [controls/combo.c] Added some handling for combo controls with ownerdraw-styles (just creating and passing the necessary messages to the corresponding listbox control; the edit-control needs to be replaced with something else). * [controls/edit.c] [windows/dialog.c] Added support for use of global heap memory in dialogs with edit controls. * [controls/listbox.c] Added support for item data. ListBoxInsertString(): Fixed bug for elements which are not inserted after the currently last element. * [misc/dos_fs.c] [miscemu/int21.c] DOS_ValidDirectory(): Checks whether a given string is in fact the valid name of a directory. Sat Oct 15 17:35:00 PDT 1994 <martin@cs.csufresno.edu> * [Imakefile] generate wine.sym after creating wine * [debugger/dbg.y] load "wine.sym" when entering debugger * [debugger/info.c] symbolic backtrace for 32-bit stack. Breaks 16-bit bt. Sun Sep 25 12:00:00 PDT 1994 <martin@osiris.cs.csufresno.edu> * [rc/rc.y] [rc/rc.h] [rc/rc.l] [rc/winerc.c] Files created Sun Sep 18 11:04:45 MET DST 1994 Dag Asheim (dash@ifi.uio.no) * [misc/spy.c] Exclude and Include no longer requires a terminating ';' to register the last component. Thu Sep 15 23:10:09 MET DST 1994 Dag Asheim (dash@ifi.uio.no) * [Configure] Rewrote much of it. Added capability to generate a wine.ini file. Commented out the processor emulator options until that becomes interesting. Gives a warning if it sees any *.rej files. I hope I haven't assumed to much about the shell/OS so that it breaks under *BSD. * [misc/dos_fs.c] Removed/changed calls to ToUnix() (which calls tolower()) so that the part of the pathname which correspond with the drive letter on DOS no longer will be mapped to lowercase. This means that it should be possible to have uppercase letters in the [drives] section of wine.ini. * [LICENSE] Cosmetic changes so that it displays better in the window you get from pressing "Credit_License" in the "About WINE" window. Sun Aug 21 21:12:06 MET DST 1994 <erik@xs4all.nl> * [controls/menu.c] LoadMenu() moved to loader/resource.c. * [misc/main.c] Added stub for FileCDR(). * [include/peexe.h] Added, from Eric's pe-test. * [include/resource.h] Added. * [loader/resources.c] Removed duplicated code in *Resource() functions. Moved NE-program specific functions into ne_image.c. Moved NE-fileformat functions to ne_resource.c. * [pe_image.c] [pe_resource.c] Added. Nothing implemented to run PE-executables, resource loading only. * [misc/file.c] Changed OpenFile() to use macros. * [misc/shell.c] Added NULL-ptr checks to ShellAbout(). * [miscemu/int21.c] Fixed a few typos. * [miscemu/kernel.c] Added _DI = _DS, to put the caller's instance in DI. Doesn't work properly if caller changed DS :-(
628 lines
14 KiB
C
628 lines
14 KiB
C
static char RCSId[] = "$Id: heap.c,v 1.3 1993/07/04 04:04:21 root Exp root $";
|
||
static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
|
||
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
#include <string.h>
|
||
#include "prototypes.h"
|
||
#include "segmem.h"
|
||
#include "heap.h"
|
||
#include "regfunc.h"
|
||
#include "stddebug.h"
|
||
/* #define DEBUG_HEAP /* */
|
||
/* #undef DEBUG_HEAP /* */
|
||
#include "debug.h"
|
||
|
||
|
||
LHEAP *LocalHeaps = NULL;
|
||
|
||
void
|
||
HEAP_CheckHeap(MDESC **free_list)
|
||
{
|
||
MDESC *m;
|
||
|
||
for (m = *free_list; m != NULL; m = m->next)
|
||
if (((int) m & 0xffff0000) != ((int) *free_list & 0xffff0000))
|
||
*(char *)0 = 0;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* HEAP_Init
|
||
*/
|
||
void
|
||
HEAP_Init(MDESC **free_list, void *start, int length)
|
||
{
|
||
if (length < 2 * sizeof(MDESC))
|
||
return;
|
||
|
||
*free_list = (MDESC *) start;
|
||
(*free_list)->prev = NULL;
|
||
(*free_list)->next = NULL;
|
||
(*free_list)->length = length - sizeof(MDESC);
|
||
}
|
||
|
||
/**********************************************************************
|
||
* HEAP_Alloc
|
||
*/
|
||
void *
|
||
HEAP_Alloc(MDESC **free_list, int flags, int bytes)
|
||
{
|
||
MDESC *m, *m_new;
|
||
|
||
dprintf_heap(stddeb,"HeapAlloc: free_list %08x, flags %x, bytes %d\n",
|
||
free_list, flags, bytes);
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
|
||
/*
|
||
* Find free block big enough.
|
||
*/
|
||
for (m = *free_list; m != NULL; m = m->next)
|
||
{
|
||
if (m->length >= bytes && m->length < bytes + 4 * sizeof(MDESC))
|
||
{
|
||
break;
|
||
}
|
||
else if (m->length > bytes)
|
||
{
|
||
m_new = m + (bytes / sizeof(MDESC)) + 2;
|
||
if (m->prev == NULL)
|
||
*free_list = m_new;
|
||
else
|
||
m->prev->next = m_new;
|
||
|
||
if (m->next != NULL)
|
||
m->next->prev = m_new;
|
||
|
||
m_new->next = m->next;
|
||
m_new->prev = m->prev;
|
||
m_new->length = m->length - ((int) m_new - (int) m);
|
||
m->length -= (m_new->length + sizeof(MDESC));
|
||
|
||
m->prev = m;
|
||
m->next = m;
|
||
m->lock = 0;
|
||
m->flags = 0;
|
||
if (flags & GLOBAL_FLAGS_ZEROINIT)
|
||
memset(m + 1, 0, bytes);
|
||
dprintf_heap(stddeb,"HeapAlloc: returning %08x\n", (m + 1));
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
return (void *) (m + 1);
|
||
}
|
||
}
|
||
|
||
if (m != NULL)
|
||
{
|
||
if (m->prev == NULL)
|
||
*free_list = m->next;
|
||
else
|
||
m->prev->next = m->next;
|
||
|
||
if (m->next != NULL)
|
||
m->next->prev = m->prev;
|
||
|
||
m->prev = m;
|
||
m->next = m;
|
||
m->lock = 0;
|
||
m->flags = 0;
|
||
if (flags & GLOBAL_FLAGS_ZEROINIT)
|
||
memset(m + 1, 0, bytes);
|
||
dprintf_heap(stddeb,"HeapAlloc: returning %08x\n", (m + 1));
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
return (void *) (m + 1);
|
||
}
|
||
|
||
dprintf_heap(stddeb,"HeapAlloc: returning %08x\n", 0);
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
return 0;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* HEAP_ReAlloc
|
||
*/
|
||
void *
|
||
HEAP_ReAlloc(MDESC **free_list, void *old_block,
|
||
int new_size, unsigned int flags)
|
||
{
|
||
MDESC *m_free;
|
||
MDESC *m;
|
||
|
||
|
||
if (!old_block)
|
||
return HEAP_Alloc(free_list, flags, new_size);
|
||
|
||
/*
|
||
* Check validity of block
|
||
*/
|
||
m = (MDESC *) old_block - 1;
|
||
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc new_size=%d !\n", new_size);
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc old_block=%08X !\n", old_block);
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc m=%08X free_list=%08X !\n", m,free_list);
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc m->prev=%08X !\n", m->prev);
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc m->next=%08X !\n", m->next);
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc *free_list=%08X !\n", *free_list);
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
|
||
if (m->prev != m || m->next != m ||
|
||
((int) m & 0xffff0000) != ((int) *free_list & 0xffff0000))
|
||
{
|
||
fprintf(stderr,"Attempt to resize bad pointer, m = %08x, *free_list = %08x\n",
|
||
m, free_list);
|
||
HEAP_CheckHeap(free_list);
|
||
return NULL;
|
||
}
|
||
|
||
/*
|
||
* Check for grow block
|
||
*/
|
||
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc Check for grow block !\n");
|
||
if (new_size > m->length)
|
||
{
|
||
m_free = m + 1 + m->length / sizeof(MDESC);
|
||
if (m_free->next == m_free ||
|
||
m_free->prev == m_free ||
|
||
m_free->length + 2*sizeof(MDESC) < new_size - m->length)
|
||
{
|
||
void *new_p = HEAP_Alloc(free_list, flags, new_size);
|
||
if (new_p ==NULL)
|
||
return NULL;
|
||
memcpy(new_p, old_block, m->length);
|
||
HEAP_Free(free_list, old_block);
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
return new_p;
|
||
}
|
||
|
||
if (m_free->prev == NULL)
|
||
*free_list = m_free->next;
|
||
else
|
||
m_free->prev->next = m_free->next;
|
||
|
||
if (m_free->next != NULL)
|
||
m_free->next->prev = m_free->prev;
|
||
|
||
m->length += sizeof(MDESC) + m_free->length;
|
||
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc before GLOBAL_FLAGS_ZEROINIT !\n");
|
||
if (flags & GLOBAL_FLAGS_ZEROINIT)
|
||
memset(m_free, '\0', sizeof(MDESC) + m_free->length);
|
||
}
|
||
|
||
/*
|
||
* Check for shrink block.
|
||
*/
|
||
dprintf_heap(stddeb,"HEAP_ReAlloc Check for shrink block !\n");
|
||
if (new_size + 4*sizeof(MDESC) < m->length)
|
||
{
|
||
m_free = m + new_size / sizeof(MDESC) + 2;
|
||
m_free->next = m_free;
|
||
m_free->prev = m_free;
|
||
m_free->length = m->length - ((int) m_free - (int) m);
|
||
m->length = (int) m_free - (int) (m + 1);
|
||
HEAP_Free(free_list, m_free + 1);
|
||
}
|
||
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
return old_block;
|
||
}
|
||
|
||
|
||
/**********************************************************************
|
||
* HEAP_Free
|
||
*/
|
||
int
|
||
HEAP_Free(MDESC **free_list, void *block)
|
||
{
|
||
MDESC *m_free;
|
||
MDESC *m;
|
||
MDESC *m_prev;
|
||
|
||
dprintf_heap(stddeb,"HeapFree: free_list %08x, block %08x\n",
|
||
free_list, block);
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
|
||
/*
|
||
* Validate pointer.
|
||
*/
|
||
m_free = (MDESC *) block - 1;
|
||
if (m_free->prev != m_free || m_free->next != m_free)
|
||
{
|
||
fprintf(stderr,"Attempt to free bad pointer,"
|
||
"m_free = %08x, *free_list = %08x\n",
|
||
m_free, free_list);
|
||
return -1;
|
||
}
|
||
|
||
if (*free_list == NULL)
|
||
{
|
||
*free_list = m_free;
|
||
(*free_list)->next = NULL;
|
||
(*free_list)->prev = NULL;
|
||
return 0;
|
||
}
|
||
else if (((int) m_free & 0xffff0000) != ((int) *free_list & 0xffff0000))
|
||
{
|
||
fprintf(stderr,"Attempt to free bad pointer,"
|
||
"m_free = %08x, *free_list = %08x\n",
|
||
m_free, free_list);
|
||
return -1;
|
||
}
|
||
|
||
/*
|
||
* Find location in free list.
|
||
*/
|
||
m_prev = NULL;
|
||
for (m = *free_list; m != NULL && m < m_free; m = m->next)
|
||
m_prev = m;
|
||
|
||
if (m_prev != NULL && (int) m_prev + m_prev->length > (int) m_free)
|
||
{
|
||
fprintf(stderr,"Attempt to free bad pointer,"
|
||
"m_free = %08x, m_prev = %08x (length %x)\n",
|
||
m_free, m_prev, m_prev->length);
|
||
return -1;
|
||
}
|
||
|
||
if ((m != NULL && (int) m_free + m_free->length > (int) m) ||
|
||
(int) m_free + m_free->length > ((int) m_free | 0xffff))
|
||
{
|
||
fprintf(stderr,"Attempt to free bad pointer,"
|
||
"m_free = %08x (length %x), m = %08x\n",
|
||
m_free, m_free->length, m);
|
||
return -1;
|
||
}
|
||
|
||
/*
|
||
* Put block back in free list.
|
||
* Does it merge with the previos block?
|
||
*/
|
||
if (m_prev != NULL)
|
||
{
|
||
if ((int) m_prev + m_prev->length == (int) m_free)
|
||
{
|
||
m_prev->length += sizeof(MDESC) + m_free->length;
|
||
m_free = m_prev;
|
||
}
|
||
else
|
||
{
|
||
m_prev->next = m_free;
|
||
m_free->prev = m_prev;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
*free_list = m_free;
|
||
m_free->prev = NULL;
|
||
}
|
||
|
||
/*
|
||
* Does it merge with the next block?
|
||
*/
|
||
if (m != NULL)
|
||
{
|
||
if ((int) m_free + m_free->length == (int) m)
|
||
{
|
||
m_free->length += sizeof(MDESC) + m->length;
|
||
m_free->next = m->next;
|
||
}
|
||
else
|
||
{
|
||
m->prev = m_free;
|
||
m_free->next = m;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
m_free->next = NULL;
|
||
}
|
||
|
||
#ifdef DEBUG_HEAP
|
||
HEAP_CheckHeap(free_list);
|
||
#endif
|
||
return 0;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* HEAP_LocalFindHeap
|
||
*/
|
||
LHEAP *
|
||
HEAP_LocalFindHeap(unsigned short owner)
|
||
{
|
||
LHEAP *lh;
|
||
|
||
dprintf_heap(stddeb,"HEAP_LocalFindHeap: owner %04x\n", owner);
|
||
|
||
for (lh = LocalHeaps; lh != NULL; lh = lh->next)
|
||
{
|
||
if (lh->selector == owner)
|
||
return lh;
|
||
}
|
||
|
||
return NULL;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* HEAP_LocalInit
|
||
*/
|
||
void
|
||
HEAP_LocalInit(unsigned short owner, void *start, int length)
|
||
{
|
||
LHEAP *lh;
|
||
|
||
dprintf_heap(stddeb,"HEAP_LocalInit: owner %04x, start %08x, length %04x\n"
|
||
,owner, start, length);
|
||
|
||
if (length < 2 * sizeof(MDESC))
|
||
return;
|
||
|
||
lh = (LHEAP *) malloc(sizeof(*lh));
|
||
if (lh == NULL)
|
||
return;
|
||
|
||
lh->next = LocalHeaps;
|
||
lh->selector = owner;
|
||
lh->local_table = NULL;
|
||
lh->delta = 0x20;
|
||
HEAP_Init(&lh->free_list, start, length);
|
||
LocalHeaps = lh;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* HEAP_LocalSize
|
||
*/
|
||
unsigned int
|
||
HEAP_LocalSize(MDESC **free_list, unsigned int handle)
|
||
{
|
||
MDESC *m;
|
||
|
||
m = (MDESC *) (((int) *free_list & 0xffff0000) |
|
||
(handle & 0xffff)) - 1;
|
||
if (m->next != m || m->prev != m)
|
||
return 0;
|
||
|
||
return m->length;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalAlloc
|
||
*/
|
||
void *
|
||
WIN16_LocalAlloc(int flags, int bytes)
|
||
{
|
||
void *m;
|
||
|
||
dprintf_heap(stddeb,"WIN16_LocalAlloc: flags %x, bytes %d\n", flags,bytes);
|
||
dprintf_heap(stddeb," called from segment %04x\n", Stack16Frame[11]);
|
||
|
||
m = HEAP_Alloc(LOCALHEAP(), flags, bytes);
|
||
|
||
dprintf_heap(stddeb,"WIN16_LocalAlloc: returning %x\n", (int) m);
|
||
return m;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalCompact
|
||
*/
|
||
int
|
||
WIN16_LocalCompact(int min_free)
|
||
{
|
||
MDESC *m;
|
||
int max_block;
|
||
|
||
max_block = 0;
|
||
for (m = *LOCALHEAP(); m != NULL; m = m->next)
|
||
if (m->length > max_block)
|
||
max_block = m->length;
|
||
|
||
return max_block;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalFlags
|
||
*/
|
||
unsigned int
|
||
WIN16_LocalFlags(unsigned int handle)
|
||
{
|
||
MDESC *m;
|
||
|
||
m = (MDESC *) (((int) *LOCALHEAP() & 0xffff0000) |
|
||
(handle & 0xffff)) - 1;
|
||
if (m->next != m || m->prev != m)
|
||
return 0;
|
||
|
||
return m->lock;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalFree
|
||
*/
|
||
unsigned int
|
||
WIN16_LocalFree(unsigned int handle)
|
||
{
|
||
unsigned int addr;
|
||
|
||
addr = ((int) *LOCALHEAP() & 0xffff0000) | (handle & 0xffff);
|
||
if (HEAP_Free(LOCALHEAP(), (void *) addr) < 0)
|
||
return handle;
|
||
else
|
||
return 0;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalInit
|
||
*/
|
||
unsigned int
|
||
WIN16_LocalInit(unsigned int segment, unsigned int start, unsigned int end)
|
||
{
|
||
unsigned short owner = HEAP_OWNER;
|
||
LHEAP *lh = HEAP_LocalFindHeap(owner);
|
||
|
||
if (segment == 0)
|
||
{
|
||
/* Get current DS */
|
||
segment = Stack16Frame[6];
|
||
}
|
||
|
||
if (lh == NULL)
|
||
{
|
||
HEAP_LocalInit(owner,
|
||
(void *) ((segment << 16) | start), end - start + 1);
|
||
}
|
||
else
|
||
{
|
||
HEAP_Init(&lh->free_list,
|
||
(void *) ((segment << 16) | start), end - start + 1);
|
||
}
|
||
dprintf_heap(stddeb,"WIN16_LocalInit // return segment=%04X !\n", segment);
|
||
return segment;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalLock
|
||
*/
|
||
void *
|
||
WIN16_LocalLock(unsigned int handle)
|
||
{
|
||
MDESC *m;
|
||
|
||
m = (MDESC *) (((int) *LOCALHEAP() & 0xffff0000) |
|
||
(handle & 0xffff)) - 1;
|
||
if (m->next != m || m->prev != m)
|
||
return 0;
|
||
|
||
m->lock++;
|
||
return (void *) (m + 1);
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalReAlloc
|
||
*/
|
||
void *
|
||
WIN16_LocalReAlloc(unsigned int handle, int bytes, int flags)
|
||
{
|
||
void *m;
|
||
dprintf_heap(stddeb,"WIN16_LocalReAlloc(%04X, %d, %04X); !\n",
|
||
handle, bytes, flags);
|
||
dprintf_heap(stddeb,"WIN16_LocalReAlloc // LOCALHEAP()=%08X !\n",
|
||
LOCALHEAP());
|
||
dprintf_heap(stddeb,"WIN16_LocalReAlloc // *LOCALHEAP()=%08X !\n",
|
||
*LOCALHEAP());
|
||
m = HEAP_ReAlloc(LOCALHEAP(), (void *)
|
||
(((int) *LOCALHEAP() & 0xffff0000) | (handle & 0xffff)),
|
||
bytes, flags);
|
||
|
||
return m;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalSize
|
||
*/
|
||
unsigned int
|
||
WIN16_LocalSize(unsigned int handle)
|
||
{
|
||
MDESC *m;
|
||
|
||
m = (MDESC *) (((int) *LOCALHEAP() & 0xffff0000) |
|
||
(handle & 0xffff)) - 1;
|
||
if (m->next != m || m->prev != m)
|
||
return 0;
|
||
|
||
return m->length;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalUnlock
|
||
*/
|
||
unsigned int
|
||
WIN16_LocalUnlock(unsigned int handle)
|
||
{
|
||
MDESC *m;
|
||
|
||
m = (MDESC *) (((int) *LOCALHEAP() & 0xffff0000) |
|
||
(handle & 0xffff)) - 1;
|
||
if (m->next != m || m->prev != m)
|
||
return 1;
|
||
|
||
if (m->lock > 0)
|
||
m->lock--;
|
||
|
||
return 0;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* WIN16_LocalHandleDelta
|
||
*/
|
||
unsigned int
|
||
WIN16_LocalHandleDelta(unsigned int new_delta)
|
||
{
|
||
LHEAP *lh;
|
||
|
||
lh = HEAP_LocalFindHeap(HEAP_OWNER);
|
||
if (lh == NULL)
|
||
return 0;
|
||
|
||
if (new_delta)
|
||
lh->delta = new_delta;
|
||
|
||
return lh->delta;
|
||
}
|
||
|
||
/**********************************************************************
|
||
* GetFreeSystemResources (user.284)
|
||
|
||
*/
|
||
#define USERRESOURCES 2
|
||
#define GDIRESOURCES 1
|
||
#define SYSTEMRESOURCES 0
|
||
#include <user.h>
|
||
#include <gdi.h>
|
||
|
||
WORD GetFreeSystemResources(WORD SystemResourceType)
|
||
{
|
||
unsigned int GdiFree=0,GdiResult=0;
|
||
unsigned int UserFree=0,UserResult=0;
|
||
unsigned int result=0;
|
||
MDESC *m;
|
||
dprintf_heap(stddeb,"GetFreeSystemResources(%u)\n",SystemResourceType);
|
||
switch(SystemResourceType) {
|
||
case(USERRESOURCES):
|
||
for (m = USER_Heap; m != NULL; m = m->next) /* add up free area in heap */
|
||
UserFree += m->length;
|
||
result=(UserFree*100)/65516; /* 65516 == 64K */
|
||
break;
|
||
case(GDIRESOURCES):
|
||
for (m = GDI_Heap; m != NULL; m = m->next)
|
||
GdiFree += m->length;
|
||
result=(GdiFree*100)/65516;
|
||
break;
|
||
case(SYSTEMRESOURCES):
|
||
for (m = USER_Heap; m != NULL; m = m->next)
|
||
UserFree += m->length;
|
||
UserResult=(UserFree*100)/65516;
|
||
for (m = GDI_Heap; m != NULL; m = m->next)
|
||
GdiFree += m->length;
|
||
GdiResult=(GdiFree*100)/65516;
|
||
result=(UserResult < GdiResult) ? UserResult:GdiResult;
|
||
break;
|
||
default:
|
||
result=0;
|
||
break;
|
||
}
|
||
return(result);
|
||
}
|