From 619beb63a1748cd9ece96260bfb2e9484e52cb67 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 9 May 2009 16:07:05 +0200 Subject: Cleanup Remove unused files, move mpiosh to src, ... --- src/global.h | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/global.h (limited to 'src/global.h') diff --git a/src/global.h b/src/global.h new file mode 100644 index 0000000..1e52491 --- /dev/null +++ b/src/global.h @@ -0,0 +1,68 @@ +/* global.h + * + * Author: Andreas Buesching + * + * $Id: global.h,v 1.3 2003/06/27 12:21:22 crunchy Exp $ + * + * Copyright (C) 2001-2003 Andreas Büsching + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef MPIOSH_GLOBAL_HH +#define MPIOSH_GLOBAL_HH + +#include "libmpio/mpio.h" + +#include "config.h" + +/* type definitions */ +typedef void(*mpiosh_cmd_callback_t)(char *args[]); +typedef char *(*mpiosh_comp_callback_t)(const char *text, int state); + +struct mpiosh_t { + mpio_t * dev; + mpio_mem_t card; + const char * prompt; + struct mpiosh_config_t *config; +}; + +struct mpiosh_cmd_t { + char *cmd; + char **aliases; + char *args; + char *info; + mpiosh_cmd_callback_t cmd_func; + mpiosh_comp_callback_t comp_func; +}; + +/* global structures */ +extern struct mpiosh_t mpiosh; +extern struct mpiosh_cmd_t commands[]; +extern int mpiosh_cancel; +extern int mpiosh_cancel_ack; + +extern const char *CONFIG_GLOBAL; +extern const char *CONFIG_USER; +extern const char *CONFIG_BACKUP; +extern const char *CONFIG_FILE; +extern const char *CONFIG_HISTORY; + +extern const char *PROMPT_INT; +extern const char *PROMPT_EXT; + +#endif + +/* end of global.h */ -- cgit v1.2.3