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

Add: RtlSizeHeap added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.