Autoloader-Abfrage in der Autoloadertruhe

Change-Id: If633192d24cbe000858152c6663b269ba8c9cb30
diff --git a/d/seher/haeuser/moebel/autoloadertruhe.c b/d/seher/haeuser/moebel/autoloadertruhe.c
index 7ffe8f2..e83a241 100644
--- a/d/seher/haeuser/moebel/autoloadertruhe.c
+++ b/d/seher/haeuser/moebel/autoloadertruhe.c
@@ -1013,3 +1013,10 @@
 
 mixed testfun() {return "bin da\n";}
 
+public int HasAutoloader(string uuid, string loadname) {
+  if (!sizeof(uuid) || !sizeof(loadname) || clonep() || !(uuid in data))
+    return -1;
+
+  return (loadname in data[uuid]);
+}
+