34 #if defined(__cplusplus) 136 #if defined (__cplusplus) #define SHI_PUBLIC_API
Definition: ShiTypes.h:52
SHI_UInt32 SHI_Ordinal
An unsigned integer that represents a position in a sequence (such as an index into a list of element...
Definition: ShiTypes.h:118
SHI_PUBLIC_API SHI_Cardinal SHI_List_GetItemCount(SHI_List *self)
Gets the number of items in this list.
SHI_PUBLIC_API SHI_Result SHI_List_Release(SHI_List *self)
Releases this list object.
SHI_PUBLIC_API SHI_Result SHI_Iterator_GetNext(SHI_Iterator *self, SHI_Data **item)
Gets the next SHI_Data object in the list.
SHI_PUBLIC_API SHI_Result SHI_List_GetIterator(SHI_List *self, SHI_Iterator **iterator)
Gets a SHI_Iterator object that can be used to access all the items in this list. ...
SHI_PUBLIC_API SHI_Result SHI_List_GetItem(SHI_List *self, SHI_Ordinal indx, SHI_Data **item)
Gets an item of this list by index.
SHI_UInt32 SHI_Cardinal
An unsigned integer used to represent a quantity that can be counted (such as a number of elements in...
Definition: ShiTypes.h:112
SHI_PUBLIC_API SHI_Result SHI_Iterator_Release(SHI_Iterator *self)
Releases this iterator object.
struct SHI_List SHI_List
Definition: ShiList.h:80
struct SHI_Data SHI_Data
A SHI_Data object represents a typed data object.
Definition: ShiData.h:116
int SHI_Result
Signed integer value representing a function or method result (return value).
Definition: ShiTypes.h:74
struct SHI_Iterator SHI_Iterator
A SHI_Iterator object iterates over a list of SHI_Data objects.
Definition: ShiList.h:46