35 lines
421 B
C
35 lines
421 B
C
#include "screen.h"
|
|
|
|
/**
|
|
* @addtogroup app
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* @defgroup screens Screens
|
|
* The Screens of the application. \sa \ref screen
|
|
*/
|
|
/*@}*/
|
|
|
|
|
|
/**
|
|
* @addtogroup screens
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* @defgroup main Main
|
|
* 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();
|
|
|
|
/*@}@}*/
|