sdk-hwV1.3/external/eyesee-mpp/system/public/libupdate/OtaUpdate.h

45 lines
816 B
C
Raw Permalink Normal View History

2024-05-07 10:09:20 +00:00
#ifndef _WINDOWS_H
#define _WINDOWS_H
#include <minigui/common.h>
#include <minigui/minigui.h>
#include <minigui/gdi.h>
#include <minigui/window.h>
#include <minigui/control.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <cutils/log.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <netinet/in.h>
#include <limits.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <ctype.h>
#include <linux/watchdog.h>
#include <sys/ioctl.h>
#include <signal.h>
#define MSG_UPDATE_OVER 1
class OtaUpdate{
public:
OtaUpdate();
~OtaUpdate();
OtaUpdate(HWND hwnd);
int startUpdate();
int startUpdatePkg();
//int readPartitionSize();
private:
HWND mHwnd;
//int mPartSize[7];
};
#endif