Go to the source code of this file.
◆ GetMemoryUsageInternalInfo()
◆ odrxAlloc()
Defines the interface for Teigha memory management.
Allocates a block of memory. 
- Parameters
 - 
  
    | nBytes | [in] Number of bytes to allocate.  | 
  
   
- Returns
 - Returns a pointer to the newly allocated memory block. 
 
- See also
 - Memory Management 
 
 
 
◆ odrxFree()
Frees a block of memory. 
- Parameters
 - 
  
    | pMemBlock | [in] Pointer to the previously allocated memory block.  | 
  
   
- See also
 - Memory Management 
 
 
 
◆ odrxRealloc()
Reallocates a block of memory. 
- Parameters
 - 
  
    | pMemBlock | [in] Pointer to the previously allocated memory block.  | 
    | newSize | [in] New size in bytes.  | 
    | oldSize | [in] Old size in bytes.  | 
  
   
- Returns
 - Returns a pointer to the newly allocated memory block. 
 
- See also
 - Memory Management