From 11096c5ec77afd16acaa5d12a43105775d224ad1 Mon Sep 17 00:00:00 2001 From: pupbrained Date: Sun, 16 Jun 2024 02:39:02 -0400 Subject: [PATCH] a lil more documentatin --- src/os/os.h | 11 +++++++++++ 1 file changed, 11 insertions(+) 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*;