This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- ██░ ██ ▒█████ ██▀███ █ ██ ██████ | |
| -- ▓██░ ██▒▒██▒ ██▒▓██ ▒ ██▒ ██ ▓██▒▒██ ▒ | |
| -- ▒██▀▀██░▒██░ ██▒▓██ ░▄█ ▒▓██ ▒██░░ ▓██▄ | |
| -- ░▓█ ░██ ▒██ ██░▒██▀▀█▄ ▓▓█ ░██░ ▒ ██▒ | |
| -- ░▓█▒░██▓░ ████▓▒░░██▓ ▒██▒▒▒█████▓ ▒██████▒▒ | |
| -- ▒ ░░▒░▒░ ▒░▒░▒░ ░ ▒▓ ░▒▓░░▒▓▒ ▒ ▒ ▒ ▒▓▒ ▒ ░ | |
| -- ▒ ░▒░ ░ ░ ▒ ▒░ ░▒ ░ ▒░░░▒░ ░ ░ ░ ░▒ ░ ░ | |
| -- ░ ░░ ░░ ░ ░ ▒ ░░ ░ ░░░ ░ ░ ░ ░ ░ | |
| -- ░ ░ ░ ░ ░ ░ ░ ░ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file windows.h | |
| * @brief Clean inclusion of the Windows.h header | |
| * | |
| */ | |
| #pragma once | |
| /* Target Windows 10 or later */ | |
| #define WINVER 0x0A00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| /* check for emscripten */ | |
| #if defined(__EMSCRIPTEN__) | |
| #define HORUS_PLATFORM_EMSCRIPTEN | |
| #error "[ platform ]: emscripten platform is not supported!" | |
| /* check for windows platform */ | |
| #elif defined(_WIN32) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file types.h | |
| * @brief Short type naming and useful memory size macros | |
| * | |
| */ | |
| #include <stdint.h> | |
| /* signed types */ | |
| typedef int8_t i8; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file console.h | |
| * @brief This file provide a function to create a console on windows | |
| * | |
| */ | |
| #pragma once | |
| /* Clean Windows Include */ | |
| #define VC_EXTRALEAN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Gettetxt helper function for cmake | |
| ## Usage: | |
| # add_gettext_domain( | |
| # DOMAIN <domain-name> | |
| # TARGET_NAME <target-name> | |
| # SOURCES <file> ... | |
| # POTFILE_DESTINATION <dir> | |
| # POFILE_DESTINATION <dir> | |
| # MOFILE_DESTINATION <dir> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file instrumentor.h | |
| * @brief Simple Instrumentor for Profiling | |
| * @version 1.0 | |
| * | |
| * This profiler will generate a json file that can be visualized with the chromium tracer | |
| */ | |
| /* Example Usage */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Tailwindcss Colors */ | |
| :root { | |
| /* Black */ | |
| --black: #000000; | |
| /* White */ | |
| --white: #ffffff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KBD kbdv-int "United States - Dvorak International" | |
| COPYRIGHT "(c) 2020 Thiago Rezende" | |
| COMPANY "Horus Software" | |
| LOCALENAME "en-US" | |
| LOCALEID "00000409" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ########################### | |
| # Time Zone Selection # | |
| # Dependencies: # | |
| # - dialog # | |
| # Folder Structure: # | |
| # ├── TZ # | |
| # │ ├── America # | |
| # │ ├── Europe # |