MorePalmOS
A development library for developing Palm OS applications

MoreTable.h File Reference

Functions for tables. More...

#include "MorePrefix.h"
#include <Table.h>

Include dependency graph for MoreTable.h:

Include dependency graph

This graph shows which files directly or indirectly include this file:

Included by dependency graph

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

void MTblMarkRowsInvalid TableType *  tableP,
Int16  firstRow,
Int16  lastRow
 

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 }

SourceForge.net Logo