mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2025-04-04 23:56:35 +02:00
Improve menu folder documentation
This commit is contained in:
parent
3f43955523
commit
243417501d
@ -1,12 +1,29 @@
|
||||
/**
|
||||
* @file hdmi.h
|
||||
* @brief Header file for HDMI-related functions.
|
||||
* @ingroup menu
|
||||
*/
|
||||
|
||||
#ifndef HDMI_H__
|
||||
#define HDMI_H__
|
||||
|
||||
|
||||
#include "boot/boot.h"
|
||||
|
||||
/**
|
||||
* @brief Clears the game ID from the HDMI interface.
|
||||
*
|
||||
* This function clears the current game ID from the HDMI interface.
|
||||
*/
|
||||
void hdmi_clear_game_id(void);
|
||||
|
||||
void hdmi_clear_game_id (void);
|
||||
void hdmi_send_game_id (boot_params_t *boot_params);
|
||||
/**
|
||||
* @brief Sends the game ID to the HDMI interface.
|
||||
*
|
||||
* This function sends the provided game ID to the HDMI interface using the
|
||||
* specified boot parameters.
|
||||
*
|
||||
* @param boot_params A pointer to the boot parameters containing the game ID.
|
||||
*/
|
||||
void hdmi_send_game_id(boot_params_t *boot_params);
|
||||
|
||||
|
||||
#endif
|
||||
#endif // HDMI_H__
|
||||
|
@ -1,17 +1,22 @@
|
||||
/**
|
||||
* @file menu.h
|
||||
* @brief Menu Subsystem
|
||||
* @ingroup menu
|
||||
* @ingroup menu
|
||||
*/
|
||||
|
||||
#ifndef MENU_H__
|
||||
#define MENU_H__
|
||||
|
||||
|
||||
#include "boot/boot.h"
|
||||
|
||||
/**
|
||||
* @brief Runs the menu subsystem.
|
||||
*
|
||||
* This function initializes and runs the menu subsystem using the provided
|
||||
* boot parameters.
|
||||
*
|
||||
* @param boot_params A pointer to the boot parameters.
|
||||
*/
|
||||
void menu_run(boot_params_t *boot_params);
|
||||
|
||||
void menu_run (boot_params_t *boot_params);
|
||||
|
||||
|
||||
#endif
|
||||
#endif // MENU_H__
|
||||
|
Loading…
x
Reference in New Issue
Block a user