mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
82 lines
2.3 KiB
C
82 lines
2.3 KiB
C
|
#ifndef __CONSOL_H__
|
|||
|
#define __CONSOL_H__
|
|||
|
|
|||
|
/*!
|
|||
|
* \file consol.h
|
|||
|
* \brief Console subsystem
|
|||
|
*
|
|||
|
*/
|
|||
|
|
|||
|
#include "gx_struct.h"
|
|||
|
|
|||
|
/* macros to support old function names */
|
|||
|
#define console_init CON_Init
|
|||
|
#define SYS_ConsoleInit CON_InitEx
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
extern "C" {
|
|||
|
#endif
|
|||
|
|
|||
|
/*!
|
|||
|
* \fn CON_Init(void *framebuffer,int xstart,int ystart,int xres,int yres,int stride)
|
|||
|
* \brief Initializes the console subsystem with given parameters
|
|||
|
*
|
|||
|
* \param[in] framebuffer pointer to the framebuffer used for drawing the characters
|
|||
|
* \param[in] xstart,ystart start position of the console output in pixel
|
|||
|
* \param[in] xres,yres size of the console in pixel
|
|||
|
* \param[in] stride size of one line of the framebuffer in bytes
|
|||
|
*
|
|||
|
* \return none
|
|||
|
*/
|
|||
|
void CON_Init(void *framebuffer,int xstart,int ystart,int xres,int yres,int stride);
|
|||
|
|
|||
|
/*!
|
|||
|
* \fn s32 CON_InitEx(GXRModeObj *rmode, s32 conXOrigin,s32 conYOrigin,s32 conWidth,s32 conHeight)
|
|||
|
* \brief Initialize stdout console
|
|||
|
* \param[in] rmode pointer to the video/render mode configuration
|
|||
|
* \param[in] conXOrigin starting pixel in X direction of the console output on the external framebuffer
|
|||
|
* \param[in] conYOrigin starting pixel in Y direction of the console output on the external framebuffer
|
|||
|
* \param[in] conWidth width of the console output 'window' to be drawn
|
|||
|
* \param[in] conHeight height of the console output 'window' to be drawn
|
|||
|
*
|
|||
|
* \return 0 on success, <0 on error
|
|||
|
*/
|
|||
|
s32 CON_InitEx(GXRModeObj *rmode, s32 conXOrigin,s32 conYOrigin,s32 conWidth,s32 conHeight);
|
|||
|
|
|||
|
/*!
|
|||
|
* \fn CON_GetMetrics(int *cols, int *rows)
|
|||
|
* \brief retrieve the columns and rows of the current console
|
|||
|
*
|
|||
|
* \param[out] cols,rows number of columns and rows of the current console
|
|||
|
*
|
|||
|
* \return none
|
|||
|
*/
|
|||
|
void CON_GetMetrics(int *cols, int *rows);
|
|||
|
|
|||
|
/*!
|
|||
|
* \fn CON_GetPosition(int *col, int *row)
|
|||
|
* \brief retrieve the current cursor position of the current console
|
|||
|
*
|
|||
|
* \param[out] col,row current cursor position
|
|||
|
*
|
|||
|
* \return none
|
|||
|
*/
|
|||
|
void CON_GetPosition(int *cols, int *rows);
|
|||
|
|
|||
|
/*!
|
|||
|
* \fn CON_EnableGecko(int channel, int safe)
|
|||
|
* \brief Enable or disable the USB gecko console.
|
|||
|
*
|
|||
|
* \param[in] channel EXI channel, or -1 <EFBFBD>to disable the gecko console
|
|||
|
* \param[in] safe If true, use safe mode (wait for peer)
|
|||
|
*
|
|||
|
* \return none
|
|||
|
*/
|
|||
|
void CON_EnableGecko(int channel,int safe);
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#endif
|