-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathData.h
More file actions
36 lines (30 loc) · 890 Bytes
/
Data.h
File metadata and controls
36 lines (30 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _APP_DATA_H_
#define _APP_DATA_H_
#include <stdio.h>
#include <string>
#include <mutex>
#include "Resource.h"
#include "SafeLock.h"
#include "Log.h"
#if defined(__cplusplus)
extern "C"
{
#endif
std::string get_g_sworker_identity();
void set_g_sworker_identity(std::string identity);
std::string get_g_enclave_id_info();
void set_g_enclave_id_info(std::string id_info);
std::string get_g_enclave_workload();
void set_g_enclave_workload(std::string workload);
std::string get_g_enclave_workreport();
void set_g_enclave_workreport(std::string workreport);
std::string get_g_new_karst_url();
void set_g_new_karst_url(std::string karst_url);
std::string get_g_upgrade_data();
void set_g_upgrade_data(std::string data);
upgrade_status_t get_g_upgrade_status();
void set_g_upgrade_status(upgrade_status_t upgrade_status);
#if defined(__cplusplus)
}
#endif
#endif /* !_APP_DATA_H_ */