PEXDeleteTableEntries - Delete Lookup Table Entries (5.0)

Synopsis

 
   void PEXDeleteTableEntries(
        Display *display,
        PEXLookupTable table,
        unsigned int start,
        unsigned int count
   )
 

Arguments

display
A pointer to a display structure returned by a successful XOpenDisplay call.

table
The resource identifier of the lookup table.

start
The initial table entry to be deleted.

count
The number of entries to be deleted.

Returns

None.

Description

Invoke PEXDeleteTableEntries to delete lookup table entries from the specified lookup table.

This function starts deleting entries at the specified entry and deletes entries with index values between start and (start + count-1), inclusive.

The PEX implementation ignores attempts to delete undefined table entries.

Errors

BadPEXLookupTable
The specified lookup table resource identifier is invalid.

BadValue
The sum of start and count is too large, or index 0 is invalid for the specified table type.

See Also

For an overview, see Lookup Tables.