Menu

[960b32]: / src / tkscid.h  Maximize  Restore  History

Download this file

131 lines (112 with data), 4.2 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/////////////////////////////////////////////////////////////////////
//
// FILE: tkscid.h
// Scid extensions to Tcl/Tk interpreter
//
// Part of: Scid (Shane's Chess Information Database)
//
// Notice: Copyright (c) 1999-2004 Shane Hudson. All rights reserved.
// Copyright (c) 2006-2007 Pascal Georges
// Copyright (c) 2013 Benini Fulvio
//
// Author: Shane Hudson (sgh@users.sourceforge.net)
//
//////////////////////////////////////////////////////////////////////
#include "common.h"
#include "scidbase.h"
// Macro TCL_ARGS expands to the argument-type list that any
// Tcl command function takes.
#define TCL_ARGS ClientData cd, Tcl_Interp * ti, int argc, const char ** argv
int sc_clipbase_paste (TCL_ARGS);
int sc_eco_base (TCL_ARGS);
int sc_eco_game (TCL_ARGS);
int sc_eco_read (TCL_ARGS);
int sc_eco_summary (TCL_ARGS);
int sc_eco_translate (TCL_ARGS);
int sc_filter_first (TCL_ARGS);
int sc_filter_freq (scidBaseT* dbase, const HFilter& filter, Tcl_Interp * ti, int argc, const char ** argv);
int sc_filter_last (TCL_ARGS);
int sc_filter_next (TCL_ARGS);
int sc_filter_prev (TCL_ARGS);
int sc_filter_stats (TCL_ARGS);
int sc_game_crosstable (TCL_ARGS);
int sc_game_find (TCL_ARGS);
int sc_game_firstMoves (TCL_ARGS);
int sc_game_import (TCL_ARGS);
int sc_game_info (TCL_ARGS);
int sc_game_load (TCL_ARGS);
int sc_game_merge (TCL_ARGS);
int sc_game_moves (TCL_ARGS);
int sc_game_novelty (TCL_ARGS);
int sc_game_new (TCL_ARGS);
int sc_game_pgn (TCL_ARGS);
int sc_game_pop (TCL_ARGS);
int sc_game_push (TCL_ARGS);
int sc_game_save (TCL_ARGS);
int sc_game_scores (TCL_ARGS);
int sc_game_startBoard (TCL_ARGS);
int sc_game_strip (TCL_ARGS);
int sc_game_summary (TCL_ARGS);
int sc_game_tags (TCL_ARGS);
int sc_game_tags_get (TCL_ARGS);
int sc_game_tags_set (TCL_ARGS);
int sc_game_tags_reload (TCL_ARGS);
int sc_game_tags_share (TCL_ARGS);
int sc_info_fsize (TCL_ARGS);
int sc_info_limit (TCL_ARGS);
int sc_info_suffix (TCL_ARGS);
int sc_info_tb (TCL_ARGS);
int sc_move_add (TCL_ARGS);
int sc_move_addSan (TCL_ARGS);
int sc_move_addUCI (TCL_ARGS);
int sc_move_back (TCL_ARGS);
int sc_move_forward (TCL_ARGS);
int sc_move_pgn (TCL_ARGS);
int sc_name_correct (TCL_ARGS);
int sc_name_edit (TCL_ARGS);
int sc_name_info (TCL_ARGS);
int sc_name_match (TCL_ARGS);
int sc_name_plist (TCL_ARGS);
int sc_name_read (TCL_ARGS);
int sc_report_create (TCL_ARGS);
int sc_report_select (TCL_ARGS);
int sc_pos_addNag (TCL_ARGS);
int sc_pos_analyze (TCL_ARGS);
int sc_pos_bestSquare (TCL_ARGS);
int sc_pos_getNags (TCL_ARGS);
int sc_pos_hash (TCL_ARGS);
int sc_pos_html (TCL_ARGS);
int sc_pos_isAt (TCL_ARGS);
int sc_pos_isLegal (TCL_ARGS);
int sc_pos_isPromo (TCL_ARGS);
int sc_pos_matchMoves (TCL_ARGS);
int sc_pos_moves (TCL_ARGS);
int sc_pos_pgnBoard (TCL_ARGS);
int sc_pos_probe (TCL_ARGS);
int sc_pos_probe_board (TCL_ARGS);
int sc_pos_setComment (TCL_ARGS);
int sc_tree_move (TCL_ARGS);
int sc_tree_search (TCL_ARGS);
int sc_tree_cachesize (TCL_ARGS);
int sc_tree_cacheinfo (TCL_ARGS);
int sc_tree_clean (TCL_ARGS);
int sc_var_delete (TCL_ARGS);
int sc_var_delete_free(TCL_ARGS);
int sc_var_enter (TCL_ARGS);
int sc_var_first (TCL_ARGS);
int sc_var_list (TCL_ARGS);
errorT search_index(scidBaseT* base, HFilter& filter, int argc, const char ** argv, const Progress& progress);
int sc_search_board (TCL_ARGS);
int sc_search_material (TCL_ARGS);
int sc_search_header (ClientData cd, Tcl_Interp * ti, scidBaseT* base, HFilter& filter, int argc, const char ** argv);
int sc_search_rep_add (TCL_ARGS);
int sc_search_rep_go (TCL_ARGS);
int sc_book_load (TCL_ARGS);
int sc_book_close (TCL_ARGS);
int sc_book_moves (TCL_ARGS);
int sc_book_positions (TCL_ARGS);
int sc_book_update (TCL_ARGS);
int sc_book_movesupdate (TCL_ARGS);
//////////////////////////////////////////////////////////////////////
/// END of tkscid.h
//////////////////////////////////////////////////////////////////////