GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Blt_TreeName(3) BLT Library Procedures Blt_TreeName(3)


Blt_TreeName - Returns the name of the tree data object.

#include <bltTree.h>

char *
Blt_TreeName(tree)

Blt_Tree tree (in)
Token for the tree object.

    

This procedure returns the name of the C-based tree data object. The arguments are as follows:
tree
Token for the tree object. The token must have been previously obtained via Blt_TreeGetToken or Blt_TreeCreate.

The name of the tree object is returned. The name will be fully qualified with a namespace context.

The following example prints the name of the new tree.

Blt_Tree token;
if (Blt_TreeCreate(interp, NULL, &token) != TCL_OK) {
    return TCL_ERROR;
}
printf("tree is %s\n", Blt_TreeName(token));

Tcl_TreeGetToken, Tcl_TreeExists, Tcl_TreeReleaseToken
2.5 BLT

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.