36 lines
435 B
C
36 lines
435 B
C
#include "screen.h"
|
|
|
|
/**
|
|
* @addtogroup app
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* @defgroup screens Screens
|
|
* The Screens of the application. \sa \ref screen
|
|
*/
|
|
/*@}*/
|
|
|
|
|
|
/**
|
|
* @addtogroup screens
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* @defgroup main Main (Screen)
|
|
* The Main Screen is the start-screen for the application
|
|
*/
|
|
/*@{*/
|
|
|
|
|
|
/**
|
|
* Returns a pointer to the main screen
|
|
* \sa gui_screen_navigate
|
|
* @return
|
|
*/
|
|
SCREEN_STRUCT* get_screen_main();
|
|
|
|
/*@}*/
|
|
/*@}*/
|