Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_SERVER_TCL_SERVER_H
#include <server/server.h>
tcl_init();
tcl_register_commands(struct command_context *);
tcl_service_free();
Files
loading...
SourceVuDevelopment ToolsOpenOCDsrc/server/tcl_server.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2008 * ***************************************************************************//* ... */ #ifndef OPENOCD_SERVER_TCL_SERVER_H #define OPENOCD_SERVER_TCL_SERVER_H #include <server/server.h> int tcl_init(void); int tcl_register_commands(struct command_context *cmd_ctx); void tcl_service_free(void); /* ... */ #endif /* OPENOCD_SERVER_TCL_SERVER_H */
Details
Show:
from
Types: Columns:
Click anywhere in the source to view detailed information here...