# Juliet\include\Core\Main ## Source Files - Header: `Juliet\include\Core\Main.h` ## AI Description 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 ### Global Scope #### Functions & Methods - `#pragma once #include extern int JulietMain(int, wchar_t**)`