uLib  User mode C/C++ extended API library for Win32 programmers.
Dynamic Arrays

Module Description

Unsorted and Sorted dynamic arrays (of pointers).
#include <uLib/DynArray.h>

DynArray is an older design, based on a Borland Delphi Pascal type, not quite
as elegant as the newer DLinkList, but leaner, with much faster indexed access,
which is sometimes a significant advantage.

Note: DynArray was moved into the uLib namespace to avoid a clash with
the TinyXML2 library, that has a diffent class with the same id.

Classes

class  uLib::DynArray
 
class  uLib::SortDynArray
 

Typedefs

typedef class DynArrayuLib::PDynArray
 
typedef bool(CALLBACK * uLib::DYN_ITEMFUNC) (PVOID Item, PVOID UserData)
 
typedef class SortDynArrayuLib::PSortDynArray
 

Typedef Documentation

◆ PDynArray

typedef class DynArray* uLib::PDynArray

Definition at line 42 of file DynArray.h.

◆ DYN_ITEMFUNC

typedef bool(CALLBACK * uLib::DYN_ITEMFUNC) (PVOID Item, PVOID UserData)

Definition at line 43 of file DynArray.h.

◆ PSortDynArray

Definition at line 154 of file DynArray.h.