23 lines
420 B
C
23 lines
420 B
C
#ifndef __TJD_INTO_PHOTO_H__
|
|
#define __TJD_INTO_PHOTO_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
void tjd_into_photo(void);
|
|
void tjd_into_ota_view(void);
|
|
void tjd_show_ota_interrupt_view(void);
|
|
void tjd_into_msgame_view(void);
|
|
void tjd_exit_app_view(void);
|
|
void tjd_into_app_view(uint16_t targetSliceId);
|
|
|
|
void tjd_restart_device(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __TJD_INTO_PHOTO_H__
|