Update readme and rename config java

This commit is contained in:
2025-05-29 16:31:55 +08:00
parent d7de3deb59
commit 647e3668a0
28 changed files with 562 additions and 13162 deletions

View File

@@ -13,10 +13,18 @@ CREATE TABLE Functions (
filepath TEXT,
name TEXT,
address TEXT,
type INTEGER,
PRIMARY KEY (name, filepath)
);
```
Where type is one of the following:
- 0: Auto
- 1: Fix
- 2: Stub
- 3: Ref
**Purpose**: Stores function definitions that have function bodies (actual implementations)
- `filepath`: Source file path where the function is defined
- `name`: Function name (identifier)
@@ -29,6 +37,7 @@ CREATE TABLE Imports (
filepath TEXT,
name TEXT,
address TEXT,
type INTEGER,
PRIMARY KEY (name, filepath)
);
```