summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmchooser/src/vmchooser/inc/functions.h
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/plugins/vmchooser/src/vmchooser/inc/functions.h')
-rw-r--r--os-plugins/plugins/vmchooser/src/vmchooser/inc/functions.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/os-plugins/plugins/vmchooser/src/vmchooser/inc/functions.h b/os-plugins/plugins/vmchooser/src/vmchooser/inc/functions.h
new file mode 100644
index 00000000..d45c6d4b
--- /dev/null
+++ b/os-plugins/plugins/vmchooser/src/vmchooser/inc/functions.h
@@ -0,0 +1,20 @@
+#ifndef _FUNCTIONS_H_
+#define _FUNCTIONS_H_
+
+#include <fltk/Widget.h>
+
+#include <glob.h>
+
+#include "DataEntry.h"
+
+DataEntry** readXmlDir(char* path); /* Attention: returns malloced array */
+DataEntry** readLinSession(char* path);
+
+void runImage(fltk::Widget* , void* p); /* This is thought as a callback-function for the Select-Browser */
+string buildCommand(DataEntry*); /* building command for different Virtualizer */
+
+glob_t* globber(char* path, char* filetype); /* Globs for a specific filetype */
+
+
+#endif /* _FUNCTIONS_H_ */
+