aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.h')
-rw-r--r--src/engine.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/engine.h b/src/engine.h
index f3a3b00..fc10323 100644
--- a/src/engine.h
+++ b/src/engine.h
@@ -9,17 +9,25 @@
*
* -----------------------------------------------------------------------------
*
+ * The functions in here are responsible for manipulating
+ * the file structure of the system and creating the links.
*
+ * It makes use of some util functions that wrap the actual
+ * function calls to linux functions
+ *
+ * After a call to an engine_*() function one has to check
+ * engine_err_message() to check for errors
*
* -------------------------------------------------------------------------- */
#include "actions.h"
#include "ckutil.h"
-/* if engine_err is set return true
+/* if engine_err is set, return true
* along with a copy of the error message.
* Pass NULL if you don't care about the message */
extern int engine_err_message(char *err);
+
extern void engine_add_make_link(const AddOpt *opt,
const Conf *conf);