Reorganization of the loader to correctly load and free libraries and
implementation of load order to load different types of libraries.

diff --git a/memory/global.c b/memory/global.c
index e5b9a1b..21da1fc 100644
--- a/memory/global.c
+++ b/memory/global.c
@@ -388,7 +388,11 @@
     TRACE(global,"oldsize %08lx\n",oldsize);
     if (ptr && (size == oldsize)) return handle;  /* Nothing to do */
 
-    ptr = HeapReAlloc( SystemHeap, 0, ptr, size );
+    if (((char *)ptr >= DOSMEM_MemoryBase(0)) &&
+        ((char *)ptr <= DOSMEM_MemoryBase(0) + 0x100000))
+        ptr = DOSMEM_ResizeBlock(0, ptr, size, NULL);
+    else
+        ptr = HeapReAlloc( SystemHeap, 0, ptr, size );
     if (!ptr)
     {
         SELECTOR_FreeBlock( sel, (oldsize + 0xffff) / 0x10000 );