Table of Contents

zlist_SortI

Description

Sort an item in a list to another index. In zlist_SortI, the item to be sorted is specified by its current location (compare: zlist_SortA).

Files

Declaration Zeolite.h
Implementation Zeolite.cpp

Function prototype

bool zlist_SortI(ZLIST hList, long From, long To);

Arguments

Name Type Comment
hList ZLIST A handle to a ZLIST variable containg the item to be sorted.
From long The current index of the item to be sorted.
To long The desired index of the item.

Return value

False if an error occurred, and true otherwise.

Comments

None.