26
27
28
29
30
31
32
|
26
27
28
29
30
31
32
33
34
35
36
37
|
+
+
+
+
+
|
A list of all of the pictures that are available; loaded from the .xclass file. Probably only the NAME column is useful to the user; it is the lump name without the .IMG suffix.
While it is possible to write to this table, there is probably no use to do so.
<h2>USERCACHEDATA</h2>
<h2>USERCACHEINDEX</h2>
<h2>VARIABLES</h2>
<verbatim-1>CREATE TEMPORARY TABLE "VARIABLES"("ID" INTEGER PRIMARY KEY, "NAME" TEXT);</verbatim-1>
List of all global and local variables. The ID is the class number left shifted by sixteen bits (the class number is zero for global variables), and then the low sixteen bits have the variable number. The name omits the <tt>@</tt> or <tt>%</tt> prefix.
|