36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
/**************************************************************************************************************************************
|
|
* Project: discoverpixy
|
|
* Website: https://github.com/t-moe/discoverpixy
|
|
* Authors: Aaron Schmocker, Timo Lang
|
|
* Institution: BFH Bern University of Applied Sciences
|
|
* File: common/app/screen_photomode_save.h
|
|
*
|
|
* Version History:
|
|
* Date Autor Email SHA Changes
|
|
* 2015-05-16 timolang@gmail.com 62006e0 Documented pixy_helper and implemented/finished photo-mode screens! Snap some shots!
|
|
*
|
|
**************************************************************************************************************************************/
|
|
|
|
#include "screen.h"
|
|
|
|
/**
|
|
* @addtogroup screens
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* @defgroup photomodesave Photo Mode Save (Screen)
|
|
* The Photo Mode Save Screen helps the user saving a file to the filesystem
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* Returns a pointer to the photomode save screen
|
|
* \sa gui_screen_navigate
|
|
* @return
|
|
*/
|
|
SCREEN_STRUCT* get_screen_photomodesave();
|
|
|
|
/*@}*/
|
|
/*@}*/
|