Changeset 19241


Ignore:
Timestamp:
Jun 15, 2002, 7:21:33 PM (23 years ago)
Author:
sandervl
Message:

forward rtl heap functions to kernel32

Location:
tags/trunk/src/NTDLL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/NTDLL/ntdll.def

    r19223 r19241  
    1 ; $Id: ntdll.def,v 1.46 2002-06-15 11:16:52 sandervl Exp $
     1; $Id: ntdll.def,v 1.47 2002-06-15 17:21:33 sandervl Exp $
    22
    33;
     
    1313    _RtlEnterCriticalSection@4           = KERNEL32.EnterCriticalSection
    1414    _RtlDeleteCriticalSection@4          = KERNEL32.DeleteCriticalSection
    15     _RtlAllocateHeap@12                  = KERNEL32.HeapAlloc
    16     _RtlFreeHeap@12                      = KERNEL32.HeapFree
    1715
    1816EXPORTS
  • TabularUnified tags/trunk/src/NTDLL/rtlstr.c

    r18982 r19241  
    3232
    3333WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
     34
     35#ifdef __WIN32OS2__
     36#define RtlAllocateHeap  HeapAlloc
     37#define RtlFreeHeap      HeapFree
     38#endif
    3439
    3540UINT NlsAnsiCodePage = 1252;
Note: See TracChangeset for help on using the changeset viewer.