20 lines
394 B
C
20 lines
394 B
C
/*
|
|
* Copyright (c) CompanyNameMagicTag Technologies Co., Ltd. 2023-2023. All rights reserved.
|
|
* Description: The application core startup logo display
|
|
* Author: CompanyName
|
|
* Create: 2022-02-19
|
|
*/
|
|
|
|
#ifndef OHOSFWK_STARTUP_H
|
|
#define OHOSFWK_STARTUP_H
|
|
#include "stdint.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void ohos_startup(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|