Regenerated doc + final submit for now

This commit is contained in:
2026-07-22 17:37:01 -04:00
parent c436639ddd
commit c0d40ef3e4
101 changed files with 869 additions and 781 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
- Header: `Juliet\include\Core\Main.h`
## AI Description
This component defines the C++ application entry point for Windows platforms. It encapsulates platform-specific logic in `main`, `wWinMain`, and a global function symbol, utilizing variadic arguments to bootstrap core initialization via Juliet::Bootstrap before executing main logic.
This C++ component provides a unified entry point for the application, handling both Windows and non-Windows platforms. It includes a `JulietMain` function that serves as the entry point for the application, which is called by the operating system. The main function is designed to be compatible with both Unicode and ANSI environments, using `wmain` on Windows and `main` on Unix-like systems. The component also provides a C-style interface through the `extern "C"` block, allowing other libraries or applications to call the `JulietMain` function directly.
## Symbols