Changeset 19 for trunk/src


Ignore:
Timestamp:
Jun 1, 1999, 1:13:12 AM (26 years ago)
Author:
phaller
Message:

Fix: Kernel32.HeapSize not exported into the DLL.

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

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

    r17 r19  
    546546;    HeapQueryTagsW             = _HeapQueryTagsW@??                    ;NT
    547547;    HeapSetFlags               = _HeapSetFlags@??            @466
    548 ;    HeapSize                   = _HeapSize@12                @467      ; reserved linker word
     548     "HeapSize"                   = _HeapSize@12                @467      ; reserved linker word
    549549     HeapUnlock                 = _HeapUnlock@4               @468
    550550;    HeapUsage                  = _HeapUsage@??                         ;NT
  • trunk/src/kernel32/heap.cpp

    r17 r19  
    1 /* $Id: heap.cpp,v 1.2 1999-05-31 22:08:08 phaller Exp $ */
     1/* $Id: heap.cpp,v 1.3 1999-05-31 23:13:12 phaller Exp $ */
    22
    33/*
     
    9595}
    9696//******************************************************************************
    97 //SvL: Heapsize is a reserved word, so the linker chokes on it if present in the .def file
    9897//******************************************************************************
    9998DWORD WIN32API HeapSize(HANDLE hHeap, DWORD arg2, PVOID  arg3)
    100 #pragma export(OS2HeapSize, "HeapSize", 467)
    10199{
    102100 OS2Heap *curheap = OS2Heap::find(hHeap);
Note: See TracChangeset for help on using the changeset viewer.