Changeset 469 for trunk/src


Ignore:
Timestamp:
Aug 10, 1999, 2:43:24 PM (26 years ago)
Author:
phaller
Message:

Add: slight restructuring and LZ32 support

Location:
trunk/src
Files:
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.DEF

    r320 r469  
    1 ; $Id: KERNEL32.DEF,v 1.17 1999-07-17 09:18:38 sandervl Exp $
     1; $Id: KERNEL32.DEF,v 1.18 1999-08-10 12:43:22 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    922922
    923923
     924; ----------------------------------------------------------------------------
     925;   KERNEL32 / WINE support functions that do not exist in real Win32
     926; ----------------------------------------------------------------------------
     927
     928; HEAP Management (heap.cpp, heapstring.cpp)
     929    HEAP_xalloc                = _HEAP_xalloc@12
     930    HEAP_xrealloc              = _HEAP_xrealloc@16
     931    HEAP_malloc                = _HEAP_malloc@4
     932    HEAP_realloc               = _HEAP_realloc@8
     933    HEAP_free                  = _HEAP_free@4
     934    HEAP_strdupWtoA            = _HEAP_strdupWtoA@12
     935    HEAP_strdupAtoW            = _HEAP_strdupAtoW@12
     936    HEAP_strdupA               = _HEAP_strdupA@12
     937    HEAP_strdupW               = _HEAP_strdupW@12
     938
    924939
    925940;really belongs in NTDLL.DLL...
     
    968983   SetWin32TIB          = _SetWin32TIB@0                           @1229
    969984   RestoreOS2FS         = RestoreOS2FS                             @1230
    970    
     985
    971986   ;SvL: HandleManager functions
    972987   HMHandleAllocate__FPUlUl                                        @1231
  • trunk/src/kernel32/heap.cpp

    r461 r469  
    1 /* $Id: heap.cpp,v 1.10 1999-08-09 22:10:08 phaller Exp $ */
     1/* $Id: heap.cpp,v 1.11 1999-08-10 12:43:22 phaller Exp $ */
    22
    33/*
    4  *
    54 * Project Odin Software License can be found in LICENSE.TXT
    65 *
    7  */
    8 /*
    96 * Win32 heap API functions for OS/2
    107 *
     
    129 *
    1310 */
     11
    1412#include <os2win.h>
    1513#include <stdlib.h>
     
    1917#include "os2heap.h"
    2018#include <odincrt.h>
    21 #include "heap.h"
     19#include <heap.h>
    2220
    2321static HANDLE processheap = NULL;
  • trunk/src/kernel32/makefile

    r450 r469  
    1 # $Id: makefile,v 1.15 1999-08-09 18:42:06 achimha Exp $
     1# $Id: makefile,v 1.16 1999-08-10 12:43:24 phaller Exp $
    22
    33#
     
    100100    except.h \
    101101    $(PDWIN32_INCLUDE)\unicode.h \
    102     heap.h \
     102    $(PDWIN32_INCLUDE)\heap.h \
    103103    $(PDWIN32_INCLUDE)\wprocess.h \
    104104    os2util.h \
     
    139139heap.OBJ: \
    140140    .\heap.cpp \
    141     .\heap.h \
     141    $(PDWIN32_INCLUDE)\heap.h \
    142142    os2heap.h
    143143
    144144heapstring.obj: \
    145145    .\heapstring.cpp \
    146     .\heap.h \
    147     .\heapstring.h
     146    $(PDWIN32_INCLUDE)\heap.h \
     147    $(PDWIN32_INCLUDE)\heapstring.h
    148148
    149149os2heap.OBJ: \
  • trunk/src/makefile

    r442 r469  
    1 # $Id: makefile,v 1.4 1999-08-09 12:43:44 phaller Exp $
     1# $Id: makefile,v 1.5 1999-08-10 12:43:22 phaller Exp $
    22
    33#
     
    5454        $(MAKE_CMD)
    5555        cd ..\NTDLL
     56        $(MAKE_CMD)
     57        cd ..\LZ32
    5658        $(MAKE_CMD)
    5759        cd ..\peldr
     
    110112        cd ..\NTDLL
    111113        $(MAKE_CMD) clean
     114        cd ..\LZ32
     115        $(MAKE_CMD) clean
Note: See TracChangeset for help on using the changeset viewer.