Upload Files

This commit is contained in:
phikill 2025-06-24 19:21:07 -03:00
parent d440e3e71c
commit a95b98a606
1054 changed files with 265055 additions and 0 deletions

27
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
"version": 4,
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}/include"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c89",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Mac",
"includePath": ["${workspaceFolder}/include"],
"compilerPath": "/usr/bin/clang",
"cStandard": "c89",
"intelliSenseMode": "macos-clang-x64"
},
{
"name": "Win",
"includePath": ["${workspaceFolder}\\include"],
"compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",
"cStandard": "c89",
"intelliSenseMode": "windows-clang-x64"
}
]
}

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Executar no Windows",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.exe",
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"preLaunchTask": "build"
},
{
"name": "Executar no Linux/macOS",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"stopAtEntry": false,
"console": "externalTerminal",
"preLaunchTask": "build"
}
]
}

49
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,49 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build with Watcom",
"type": "shell",
"command": "wcl386",
"args": [
"-I=include",
"src/main.c",
"-fe=bin/main_watcom.exe"
],
"group": "build",
"problemMatcher": []
},
{
"label": "Build with VS2019",
"type": "shell",
"command": "cl",
"args": [
"/Iinclude",
"src\\main.c",
"/Fe:bin\\main_vs2019.exe"
],
"options": {
"env": {
"PATH": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\bin\\Hostx64\\x64;${env:PATH}"
}
},
"group": "build"
},
{
"label": "Build with VS2022",
"type": "shell",
"command": "cl",
"args": [
"/Iinclude",
"src\\main.c",
"/Fe:bin\\main_vs2022.exe"
],
"options": {
"env": {
"PATH": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.39.33519\\bin\\Hostx64\\x64;${env:PATH}"
}
},
"group": "build"
}
]
}

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

BIN
bin/linux_64/cef.pak Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
bin/linux_64/chrome-sandbox Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/linux_64/icudtl.dat Normal file

Binary file not shown.

BIN
bin/linux_64/locales/am.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ar.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/bg.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/bn.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ca.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/cs.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/da.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/de.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/el.pak Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
bin/linux_64/locales/es.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/et.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/fa.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/fi.pak Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/linux_64/locales/fr.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/gu.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/he.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/hi.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/hr.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/hu.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/id.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/it.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ja.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/kn.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ko.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/lt.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/lv.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ml.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/mr.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ms.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/nb.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/nl.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/pl.pak Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
bin/linux_64/locales/ro.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ru.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/sk.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/sl.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/sr.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/sv.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/sw.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/ta.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/te.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/th.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/tr.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/uk.pak Normal file

Binary file not shown.

BIN
bin/linux_64/locales/vi.pak Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

19292
bin/linux_64/natives_blob.bin Normal file

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

BIN
bin/lpc_launcher/main.obj Normal file

Binary file not shown.

BIN
bin/lpc_launcher/pres.res Normal file

Binary file not shown.

BIN
bin/nt_64/cef.pak Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

11
bin/nt_64/debug.log Normal file
View file

@ -0,0 +1,11 @@
[0619/134641:ERROR:ipc_channel_win.cc(217)] pipe error: 109
[0624/082509:ERROR:proxy_service_factory.cc(136)] Cannot use V8 Proxy resolver in single process mode.
[0624/082509:WARNING:histograms.cc(40)] Started multiple compositor clients (Browser, Renderer) in one process. Some metrics will be disabled.
[0624/082518:WARNING:raw_channel_win.cc(532)] WriteFile: O pipe está sendo fechado. (0xE8)
[0624/082518:ERROR:ipc_channel_win.cc(217)] pipe error: 109
[0624/084854:ERROR:proxy_service_factory.cc(136)] Cannot use V8 Proxy resolver in single process mode.
[0624/084854:WARNING:histograms.cc(40)] Started multiple compositor clients (Browser, Renderer) in one process. Some metrics will be disabled.
[0624/084858:WARNING:raw_channel_win.cc(532)] WriteFile: O pipe está sendo fechado. (0xE8)
[0624/133149:ERROR:proxy_service_factory.cc(136)] Cannot use V8 Proxy resolver in single process mode.
[0624/133149:WARNING:histograms.cc(40)] Started multiple compositor clients (Browser, Renderer) in one process. Some metrics will be disabled.
[0624/133151:WARNING:raw_channel_win.cc(532)] WriteFile: O pipe está sendo fechado. (0xE8)

Binary file not shown.

Binary file not shown.

BIN
bin/nt_64/debug/libcef.lib Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/nt_64/icudtl.dat Normal file

Binary file not shown.

BIN
bin/nt_64/libEGL.dll Normal file

Binary file not shown.

BIN
bin/nt_64/libGLESv2.dll Normal file

Binary file not shown.

BIN
bin/nt_64/libcef.dll Normal file

Binary file not shown.

BIN
bin/nt_64/locales/am.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/ar.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/bg.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/bn.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/ca.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/cs.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/da.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/de.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/el.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/en-GB.pak Normal file

Binary file not shown.

BIN
bin/nt_64/locales/en-US.pak Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/nt_64/locales/es.pak Normal file

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more