create buffer class && some warnings fixes && update manual && create vscode tasks

This commit is contained in:
2025-05-08 23:48:52 +05:00
parent 79a79c5409
commit 521d00fdb8
16 changed files with 547 additions and 107 deletions

View File

@@ -9,7 +9,9 @@
"syscalls.h": "c",
"registers.h": "c",
"version_type.h": "c",
"library_version.h": "c"
"library_version.h": "c",
"scancodes.h": "c",
"ipc.h": "c"
},
"cSpell.words": [
"syscalls",
@@ -30,6 +32,7 @@
"luaL_checkudata",
"luaL_optinteger",
"luaL_pushfail",
"lua_pushlightuserdata",
"lua_pushboolean",
"lua_pushinteger",
"lua_pushnumber",

30
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,30 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "process",
"command": "make",
"args": [
"syscalls.dll"
],
"group": {
"isDefault": true,
"kind": "build"
},
"problemMatcher": "$gcc"
},
{
"label": "Clean",
"type": "process",
"command": "make",
"args": [
"clean"
],
"group": {
"isDefault": false,
"kind": "build"
}
}
]
}