Implemented rest of status plugin, only external networking script is still missing
[mtetherd] / util.h
diff --git a/util.h b/util.h
index 118a5d1..8295c66 100644 (file)
--- a/util.h
+++ b/util.h
 
 #include <glib.h>
 
+// Opens /proc/modules and scans for g_ether
+// Returns TRUE if found, FALSEĀ if not
 gboolean mtetherd_scan_modules(const char *module);
+// Launch an external script in the background
+// command[] is a NULL-terminated list of arguments,
+// command[0] is the full path of the script to execute
+// Returns FALSE if fork() failed
 gboolean mtetherd_launch_script(const char *command[]);
 
 #endif //_MTETHERD_UTIL_H