draconisplusplus/src/os/os.h
2024-08-06 05:05:30 +00:00

29 lines
490 B
C

#pragma once
#include "../util/macros.h"
#include "../util/types.h"
/**
* @brief Get the amount of installed RAM in bytes.
*/
fn GetMemInfo() -> u64;
/**
* @brief Get the currently playing song metadata.
*/
fn GetNowPlaying() -> string;
/**
* @brief Get the OS version.
*/
fn GetOSVersion() -> string;
/**
* @brief Get the current desktop environment.
*/
fn GetDesktopEnvironment() -> string;
/**
* @brief Get the current window manager.
*/
fn GetWindowManager() -> string;