25 lines
569 B
C
25 lines
569 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved.
|
|
*
|
|
* Description: service_screen.h
|
|
*
|
|
* Author: luziquan@ss-tjd.com
|
|
*
|
|
* Create: 2024-10-31
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef SERVICE_SCREEN_H
|
|
#define SERVICE_SCREEN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void tjd_service_screen_display_on_event(void);
|
|
void tjd_service_screen_display_off_event(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SERVICE_SCREEN_H
|