15 lines
202 B
C
15 lines
202 B
C
|
#ifndef __HTML_FILES_H
|
||
|
#define __HTML_FILES_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// 声明HTML页面内容
|
||
|
extern const char index_html[];
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __HTML_FILES_H */
|