mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
16 lines
386 B
C
16 lines
386 B
C
|
|
#pragma once
|
||
|
|
#include "Global.h"
|
||
|
|
#ifdef STANDARD_WEB_SERVER
|
||
|
|
extern void standWebServerInit();
|
||
|
|
|
||
|
|
extern void standWebServerFiles();
|
||
|
|
extern bool handleFileRead(String path);
|
||
|
|
extern String getContentType(String filename);
|
||
|
|
|
||
|
|
#ifdef RSET_FILE_OPERATIONS
|
||
|
|
extern void handleFileUpload();
|
||
|
|
extern void handleFileDelete();
|
||
|
|
extern void handleFileCreate();
|
||
|
|
extern void handleFileList();
|
||
|
|
#endif
|
||
|
|
#endif
|