Changeset 568 for trunk/src


Ignore:
Timestamp:
Aug 19, 1999, 4:12:17 AM (26 years ago)
Author:
phaller
Message:

Add: RtlSizeHeap added

Location:
trunk/src/NTDLL
Files:
2 edited

Legend:

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

    r563 r568  
    1 ; $Id: ntdll.def,v 1.15 1999-08-18 23:41:15 phaller Exp $
     1; $Id: ntdll.def,v 1.16 1999-08-19 02:12:17 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    283283    RtlReleaseResource            = _RtlReleaseResource@4             @471
    284284    RtlDumpResource               = _RtlDumpResource@4                @340
    285     RtlCreateHeap                 = _RtlCreateHeap@24
    286     RtlAllocateHeap               = _RtlAllocateHeap@12
    287     RtlFreeHeap                   = _RtlFreeHeap@12
    288     RtlDestroyHeap                = _RtlDestroyHeap@4
     285    RtlCreateHeap                 = _RtlCreateHeap@24                 @309
     286    RtlAllocateHeap               = _RtlAllocateHeap@12               @266
     287    RtlFreeHeap                   = _RtlFreeHeap@12                   @374
     288    RtlDestroyHeap                = _RtlDestroyHeap@4                 @333
     289    RtlSizeHeap                   = _RtlSizeHeap@12                   @493
    289290;   DbgPrint                      = _DbgPrint@8
    290291
  • trunk/src/NTDLL/rtl.cpp

    r560 r568  
    1 /* $Id: rtl.cpp,v 1.5 1999-08-18 22:08:34 phaller Exp $ */
     1/* $Id: rtl.cpp,v 1.6 1999-08-19 02:12:17 phaller Exp $ */
    22
    33/*
     
    1818#include <stdlib.h>
    1919#include <string.h>
     20#include <odinwrap.h>
    2021
    2122#include "ntdll.h"
     
    2627
    2728
     29ODINDEBUGCHANNEL(NTDLL-RTL)
    2830
    2931/*
     
    326328
    327329
     330
     331/******************************************************************************
     332 *  RtlSizeHeap                             [NTDLL]
     333 */
     334
     335ODINFUNCTION3(DWORD,RtlSizeHeap,HANDLE,hHeap,
     336                                DWORD, dwFlags,
     337                                PVOID, pAddress)
     338{
     339  return HeapSize(hHeap,
     340                  dwFlags,
     341                  pAddress);
     342}
     343
     344
     345
    328346/*
    329347 * misc functions
Note: See TracChangeset for help on using the changeset viewer.