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
TICKIT_BUILD(3) FreeBSD Library Functions Manual TICKIT_BUILD(3)

tickit_build - create a new toplevel Tickit instance with arguments

#include <tickit.h>

struct TickitBuilder {
  TickitTerm *tt;
  struct TickitTermBuilder term_builder;
  ...
};

Tickit *tickit_build(const struct TickitBuilder *builder);

Link with -ltickit.

tickit_build() creates a new toplevel Tickit instance initialised from the various parameters given in the builder struct. Note that the above definition for the struct is incomplete; the actual struct definition contains more fields than shown as some are for internal purposes. User code should only attempt to interact with those fields documented here.

If the tt field is set, it should contain a TickitTerm instance. If left blank, then one will be constructed by passing the nested term_builder structure to tickit_term_build(3).

If successful, tickit_build() returns a pointer to the new instance. On failure, NULL is returned with errno set to indicate the failure.

tickit(7)

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.