Changeset 493


Ignore:
Timestamp:
Aug 13, 1999, 8:40:02 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r488 r493  
    1  /* $Id: changelog,v 1.79 1999-08-12 23:33:36 phaller Exp $ */
     1 /* $Id: changelog,v 1.80 1999-08-13 18:40:02 sandervl Exp $ */
     2
     3 99-08-13: Sander van Leeuwen <sandervl@xs4all.nl>
     4        - KERNEL32: Export heap functions by ordinal
     5        - src\makefile: compile lz32 before version (dependency)
    26
    37 99-08-12: Patrick Haller <phaller@gmx.net>
  • trunk/src/kernel32/KERNEL32.DEF

    r469 r493  
    1 ; $Id: KERNEL32.DEF,v 1.18 1999-08-10 12:43:22 phaller Exp $
     1; $Id: KERNEL32.DEF,v 1.19 1999-08-13 18:38:19 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    926926; ----------------------------------------------------------------------------
    927927
    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 
    939 
    940928;really belongs in NTDLL.DLL...
    941929    memmove                    = _OS2memmove                    @906
     
    991979   GetThreadTEB         = _GetThreadTEB@0                          @1234
    992980   GetThreadTHDB        = _GetThreadTHDB@0                         @1235
     981
     982; HEAP Management (heap.cpp, heapstring.cpp)
     983    HEAP_xalloc                = _HEAP_xalloc@12                   @1240
     984    HEAP_xrealloc              = _HEAP_xrealloc@16                 @1241
     985    HEAP_malloc                = _HEAP_malloc@4                    @1242
     986    HEAP_realloc               = _HEAP_realloc@8                   @1243
     987    HEAP_free                  = _HEAP_free@4                      @1244
     988    HEAP_strdupWtoA            = _HEAP_strdupWtoA@12               @1245
     989    HEAP_strdupAtoW            = _HEAP_strdupAtoW@12               @1246
     990    HEAP_strdupA               = _HEAP_strdupA@12                  @1247
     991    HEAP_strdupW               = _HEAP_strdupW@12                  @1248
     992
  • trunk/src/makefile

    r478 r493  
    1 # $Id: makefile,v 1.6 1999-08-11 17:15:46 sandervl Exp $
     1# $Id: makefile,v 1.7 1999-08-13 18:38:50 sandervl Exp $
    22
    33#
     
    4545        cd ..\mpr
    4646        $(MAKE_CMD)
    47         cd ..\version
    48         $(MAKE_CMD)
    4947        cd ..\winmm
    5048        $(MAKE_CMD)
     
    5654        $(MAKE_CMD)
    5755        cd ..\LZ32
     56        $(MAKE_CMD)
     57        cd ..\version
    5858        $(MAKE_CMD)
    5959        cd ..\peldr
Note: See TracChangeset for help on using the changeset viewer.