diff --git a/src/os/os.h b/src/os/os.h index fac7052..4b986e9 100644 --- a/src/os/os.h +++ b/src/os/os.h @@ -5,6 +5,17 @@ #include "util/macros.h" #include "util/numtypes.h" +/** + * @brief Get the amount of installed RAM in bytes. + */ fn GetMemInfo() -> u64; + +/** + * @brief Get the currently playing song metadata. + */ fn GetNowPlaying() -> std::string; + +/** + * @brief Get the OS version. + */ fn GetOSVersion() -> const char*;