code_app/app/upgrade/HGUpgrade.h

16 lines
355 B
C
Raw Normal View History

2022-06-29 09:46:00 +00:00
#ifndef __HGUPGRADE_H__
#define __HGUPGRADE_H__
#include <string>
// 上传安装日志
bool PostInstallInfo(const std::string &desc);
2022-06-29 09:46:00 +00:00
// 上传卸载日志
bool PostUninstallInfo(const std::string &desc);
2022-06-29 09:46:00 +00:00
// 升级安装, 使用之前的安装路径
bool Upgrade(const std::string& pkgPath, const std::string &desc);
2022-06-29 09:46:00 +00:00
#endif /* __HGUPGRADE_H__ */