My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
genericscript.h
1 #ifndef genericscript_h
2 #define genericscript_h
3 
4 #include "controlscript.h"
5 
6 /*
7  * All commands that send messages to the real-time controller, should
8  * call rtc_offline() before attempting to send the command. This
9  * function reports an error and returns 1 if the command should be
10  * aborted. Some commands will of course get queued before we know
11  * that the connection has been lost. These will be silently discarded
12  * by the communications thread.
13  */
14 
15 Script* add_GenericScriptCommands(ControlProg *cp, Script* sc, int batch,
16  HashTable *signals);
17 
18 // This must be defined by specific experiments
19 
20 Script* add_SpecificScriptCommands(ControlProg *cp, Script* sc, int batch,
21  HashTable *signals);
22 
23 #endif
Definition: hash.h:119
Definition: genericcontrol.c:708
Definition: script.h:315