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
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2007-2008 - INRIA
* Copyright (C) 2008-2008 - Bruno JOFRET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
*
*/
#ifndef __STORECOMMAND_H__
#define __STORECOMMAND_H__
#include "machine.h"
/*
* Checks if there's something on the
* commandQueue
* @return
*/
int ismenu(void);
/**
* try to execute a command or add it to the end of command queue
*
* @param command the command
* @return <ReturnValue>
*/
int StoreCommand (char *command);
/**
* try to execute a command or add it to the end of command queue
*
* @param command the command
* @param flag a internal execution flag for sequential execution
* @return <ReturnValue>
*/
int StoreCommandWithFlag (char *command, int flag);
/**
* @TODO add comment
*
* @param str
* @return <ReturnValue>
*/
int GetCommand (char *str);
/**
* try to execute a command or add it to the _BEGINNING_ of command queue
* flag = 0 : the command is not shown in scilab window
* flag = 1 : the command is shown in scilab window (if at prompt) and executed sequentially
*/
int StorePrioritaryCommandWithFlag (char *command,int flag);
/**
*
*/
int C2F(getmen)(char * btn_cmd,int * lb, int * entry);
/**
* check if command queue is empty
* @return 1 if empty , 0 is not empty
*/
int isEmptyCommandQueue(void);
#endif /* __STORECOMMAND_H__ */
|