SilverScreen Solid Modeler

bt_delete

bt_delete

Previous topic Next topic  

bt_delete

Previous topic Next topic JavaScript is required for the print function  

SilverScreenAPI

Antiquated

 

int bt_delete( int handle )

 

int handle;        // an open b-tree database handle

 

 

 




Synopsis

#include "silver.h"

 

The bt_delete function deletes a record and index entry pair from a b-tree data and index file pair. The entry deleted is the last accessed by a call to bt_next, bt_previous, bt_find , or bt_find2 .

 

 

Parameters

handle is an open b-tree database handle, as obtained by a call to bt_open .

 

 

Return Value

bt_delete returns 1 if the delection was successful, and 0 otherwise.

 

 

Comments

The btree-family of functions is not available in SilverSharp, except by means of P/Invoke.

 

See Also

bt_erase