Usermode - Removed SpiderScript
[tpg/acess2.git] / Usermode / Applications / init_src / main.c
index eb2e931..c18e5f8 100644 (file)
@@ -4,47 +4,16 @@
 #include <acess/sys.h>
 #include <stdlib.h>
 #include <stdio.h>
-#include <spiderscript.h>
 //#include "common.h"
 
 // === CONSTANTS ===
-#define NULL   ((void*)0)
 #define NUM_TERMS      4
 #define        DEFAULT_TERMINAL        "/Devices/VTerm/0"
 #define DEFAULT_SHELL  "/Acess/SBin/login"
-#define DEFAULT_SCRIPT "/Acess/Conf/BootConf.isc"
 
 #define ARRAY_SIZE(x)  ((sizeof(x))/(sizeof((x)[0])))
 
 // === PROTOTYPES ===
-tSpiderVariable        *Script_System_IO_Open(tSpiderScript *, int, tSpiderVariable *);
-
-// === GLOBALS ===
-tSpiderFunction        gaScriptNS_IO_Fcns[] = {
-       {"Open", Script_System_IO_Open}
-};
-tSpiderNamespace       gaScriptNS_System[] = {
-       {
-               "IO",
-               0, NULL,
-               ARRAY_SIZE(gaScriptNS_IO_Fcns), gaScriptNS_IO_Fcns,
-               0, NULL
-       }
-};
-
-tSpiderNamespace       gaScriptNamespaces[] = {
-       {
-               "System",
-               ARRAY_SIZE(gaScriptNS_System), gaScriptNS_System,
-               0, NULL,
-               0, NULL
-       }
-};
-
-tSpiderVariant gScriptVariant = {
-       "init", 0,
-       ARRAY_SIZE(gaScriptNamespaces), gaScriptNamespaces
-};
 
 // === CODE ===
 /**
@@ -82,22 +51,3 @@ int main(int argc, char *argv[])
        return 42;
 }
 
-/**
- * \brief Reads and parses the boot configuration script
- * \param Filename     File to parse and execute
- */
-void ExecuteScript(const char *Filename)
-{
-       tSpiderScript   *script;
-       script = SpiderScript_ParseFile(&gScriptVariant, Filename);
-       SpiderScript_ExecuteMethod(script, "");
-       SpiderScript_Free(script);
-}
-
-/**
- * \brief Open a file
- */
-tSpiderVariable        *Script_System_IO_Open(tSpiderScript *Script, int NArgs, tSpiderVariable *Args)
-{
-       return NULL;
-}

UCC git Repository :: git.ucc.asn.au