MoreTable.h File Reference
Functions for tables. More...
#include "MorePrefix.h"
#include <Table.h>
Include dependency graph for MoreTable.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
void | MTblMarkRowsInvalid (TableType *tableP, Int16 firstRow, Int16 lastRow) |
Invalidates rows of a table. |
Detailed Description
Functions for tables.
Definition in file MoreTable.h.
Function Documentation
|
Invalidates rows of a table. Like TblMarkRowInvfalid, but operates on a range of rows. Definition at line 25 of file MoreTable.c. 00026 { 00027 Int16 i; 00028 _validate_object_ptr( tableP ); 00029 _check( firstRow <= lastRow ); 00030 for ( i = firstRow; i <= lastRow; i++) 00031 TblMarkRowInvalid( tableP, i ); 00032 }
|