MoreTable.c File Reference
#include "MorePrefix.h"
#include "MoreTable.h"
#include "MorePrivate.h"
#include <Table.h>
Include dependency graph for MoreTable.c:
Go to the source code of this file.
Functions | |
void | MTblMarkRowsInvalid (TableType *tableP, Int16 firstRow, Int16 lastRow) |
Invalidates rows of a table. |
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 }
|