OSDN Git Service

client 0.4.0 release
[unagi/old-svn-converted.git] / client / tag / 0.4.0 / trunk / script.h
diff --git a/client/tag/0.4.0/trunk/script.h b/client/tag/0.4.0/trunk/script.h
deleted file mode 100644 (file)
index a76dadf..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef _SCRIPT_H_
-#define _SCRIPT_H_
-int ppu_ramtest(void);
-void script_load(const char *scriptfile, const char *nesfile, const int test_only);
-
-struct st_variable{
-       int type;
-       char variable;
-       long value;
-};
-
-struct st_expression{
-       struct st_variable left, right;
-       int operator;
-};
-
-struct script{
-       int opcode;
-       long value[4];
-       struct st_expression expression;
-       char variable;
-};
-
-enum{
-       VALUE_EXPRESSION = 0x1000000,
-       VALUE_VARIABLE
-};
-enum{
-       EXPRESSION_TYPE_VARIABLE,
-       EXPRESSION_TYPE_VALUE
-};
-#endif