#include "tcltk_calling_convention.h"
#include "vcommands.h"
#include "vtcl.h"
#include "vgraph.h"
#include "vtext.h"
#include "vmenu.h"
#include "vframe.h"
#include "vtoplevel.h"
#include "vmessage.h"
#include "vlistbox.h"
#include "vform.h"
#include "vbuttonbar.h"
#include <tcl.h>
#include <stdarg.h>
Functions | |
void | v_create_commands (command_entry commands[]) |
int | v_parse_firstarg (Tcl_Interp *interp, int argc, char *argv[], char *firstargs[]) |
void | v_wrong_argc (Tcl_Interp *interp) |
void | v_warning (Tcl_Interp *interp) |
void | v_warning (char *msg ...) |
void | v_error (int return_code, char *msg) |
int TCLTK_CALLING_CONVENTION | v_handle_error (ClientData, Tcl_Interp *interp, int , char * []) |
int TCLTK_CALLING_CONVENTION | v_exit (ClientData, Tcl_Interp * , int argc, char *argv[]) |
Variables | |
Tcl_CmdProc | v_handle_error |
Tcl_CmdProc | v_exit |
command_entry | v_commands [] = { { "v_handle_error", &v_handle_error, 0, 0}, { "v_exit", &v_exit, 0, 0}, { "vframe", &vframe::vframe_cmd, 0, 0}, { "vmenu", &vmenu::vmenu_cmd, 0, 0}, { "vtext", &vtext::vtext_cmd, 0, 0}, { "vgraph", &vgraph::vgraph_cmd, 0, 0}, { "vtoplevel", &vtoplevel::vtoplevel_cmd, 0, 0}, { "vmessage", &vmessage::vmessage_cmd, 0, 0}, { "vlistbox", &vlistbox::vlistbox_cmd, 0, 0}, { "vform", &vform::vform_cmd, 0, 0}, { "vbuttonbar", &vbuttonbar::vbuttonbar_cmd, 0, 0}, { 0, 0, 0, 0} } |
|
|
|
|
|
|
|
|
|
|
|