339 lines
23 KiB
C++
339 lines
23 KiB
C++
#ifndef __NETWORK_Agent_HPP__
|
|
#define __NETWORK_Agent_HPP__
|
|
|
|
#include "bambu_networking.hpp"
|
|
#include "libslic3r/ProjectTask.hpp"
|
|
|
|
using namespace BBL;
|
|
|
|
namespace Slic3r {
|
|
typedef bool (*func_check_debug_consistent)(bool is_debug);
|
|
typedef std::string (*func_get_version)(void);
|
|
typedef void* (*func_create_agent)(std::string log_dir);
|
|
typedef int (*func_destroy_agent)(void *agent);
|
|
typedef int (*func_init_log)(void *agent);
|
|
typedef int (*func_set_config_dir)(void *agent, std::string config_dir);
|
|
typedef int (*func_set_cert_file)(void *agent, std::string folder, std::string filename);
|
|
typedef int (*func_set_country_code)(void *agent, std::string country_code);
|
|
typedef int (*func_start)(void *agent);
|
|
typedef int (*func_set_on_ssdp_msg_fn)(void *agent, OnMsgArrivedFn fn);
|
|
typedef int (*func_set_on_user_login_fn)(void *agent, OnUserLoginFn fn);
|
|
typedef int (*func_set_on_printer_connected_fn)(void *agent, OnPrinterConnectedFn fn);
|
|
typedef int (*func_set_on_server_connected_fn)(void *agent, OnServerConnectedFn fn);
|
|
typedef int (*func_set_on_http_error_fn)(void *agent, OnHttpErrorFn fn);
|
|
typedef int (*func_set_get_country_code_fn)(void *agent, GetCountryCodeFn fn);
|
|
typedef int (*func_set_on_subscribe_failure_fn)(void *agent, GetSubscribeFailureFn fn);
|
|
typedef int (*func_set_on_message_fn)(void *agent, OnMessageFn fn);
|
|
typedef int (*func_set_on_user_message_fn)(void *agent, OnMessageFn fn);
|
|
typedef int (*func_set_on_local_connect_fn)(void *agent, OnLocalConnectedFn fn);
|
|
typedef int (*func_set_on_local_message_fn)(void *agent, OnMessageFn fn);
|
|
typedef int (*func_set_queue_on_main_fn)(void *agent, QueueOnMainFn fn);
|
|
typedef int (*func_connect_server)(void *agent);
|
|
typedef bool (*func_is_server_connected)(void *agent);
|
|
typedef int (*func_refresh_connection)(void *agent);
|
|
typedef int (*func_start_subscribe)(void *agent, std::string module);
|
|
typedef int (*func_stop_subscribe)(void *agent, std::string module);
|
|
typedef int (*func_add_subscribe)(void *agent, std::vector<std::string> dev_list);
|
|
typedef int (*func_del_subscribe)(void *agent, std::vector<std::string> dev_list);
|
|
typedef void (*func_enable_multi_machine)(void *agent, bool enable);
|
|
typedef int (*func_start_device_subscribe)(void* agent);
|
|
typedef int (*func_stop_device_subscribe)(void* agent);
|
|
typedef int (*func_send_message)(void *agent, std::string dev_id, std::string json_str, int qos);
|
|
typedef int (*func_connect_printer)(void *agent, std::string dev_id, std::string dev_ip, std::string username, std::string password, bool use_ssl);
|
|
typedef int (*func_disconnect_printer)(void *agent);
|
|
typedef int (*func_send_message_to_printer)(void *agent, std::string dev_id, std::string json_str, int qos);
|
|
typedef bool (*func_start_discovery)(void *agent, bool start, bool sending);
|
|
typedef int (*func_change_user)(void *agent, std::string user_info);
|
|
typedef bool (*func_is_user_login)(void *agent);
|
|
typedef int (*func_user_logout)(void *agent);
|
|
typedef std::string (*func_get_user_id)(void *agent);
|
|
typedef std::string (*func_get_user_name)(void *agent);
|
|
typedef std::string (*func_get_user_avatar)(void *agent);
|
|
typedef std::string (*func_get_user_nickanme)(void *agent);
|
|
typedef std::string (*func_build_login_cmd)(void *agent);
|
|
typedef std::string (*func_build_logout_cmd)(void *agent);
|
|
typedef std::string (*func_build_login_info)(void *agent);
|
|
typedef int (*func_get_model_id_from_desgin_id)(void *agent, std::string& desgin_id, std::string& model_id);
|
|
typedef int (*func_ping_bind)(void *agent, std::string ping_code);
|
|
typedef int (*func_bind)(void *agent, std::string dev_ip, std::string dev_id, std::string sec_link, std::string timezone, bool improved, OnUpdateStatusFn update_fn);
|
|
typedef int (*func_unbind)(void *agent, std::string dev_id);
|
|
typedef std::string (*func_get_bambulab_host)(void *agent);
|
|
typedef std::string (*func_get_user_selected_machine)(void *agent);
|
|
typedef int (*func_set_user_selected_machine)(void *agent, std::string dev_id);
|
|
typedef int (*func_start_print)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, OnWaitFn wait_fn);
|
|
typedef int (*func_start_local_print_with_record)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, OnWaitFn wait_fn);
|
|
typedef int (*func_start_send_gcode_to_sdcard)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, OnWaitFn wait_fn);
|
|
typedef int (*func_start_local_print)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn);
|
|
typedef int (*func_start_sdcard_print)(void *agent, PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn);
|
|
typedef int (*func_get_user_presets)(void *agent, std::map<std::string, std::map<std::string, std::string>>* user_presets);
|
|
typedef std::string (*func_request_setting_id)(void *agent, std::string name, std::map<std::string, std::string>* values_map, unsigned int* http_code);
|
|
typedef int (*func_put_setting)(void *agent, std::string setting_id, std::string name, std::map<std::string, std::string>* values_map, unsigned int* http_code);
|
|
typedef int (*func_get_setting_list)(void *agent, std::string bundle_version, ProgressFn pro_fn, WasCancelledFn cancel_fn);
|
|
typedef int (*func_get_setting_list2)(void *agent, std::string bundle_version, CheckFn chk_fn, ProgressFn pro_fn, WasCancelledFn cancel_fn);
|
|
typedef int (*func_delete_setting)(void *agent, std::string setting_id);
|
|
typedef std::string (*func_get_studio_info_url)(void *agent);
|
|
typedef int (*func_set_extra_http_header)(void *agent, std::map<std::string, std::string> extra_headers);
|
|
typedef int (*func_get_my_message)(void *agent, int type, int after, int limit, unsigned int* http_code, std::string* http_body);
|
|
typedef int (*func_check_user_task_report)(void *agent, int* task_id, bool* printable);
|
|
typedef int (*func_get_user_print_info)(void *agent, unsigned int* http_code, std::string* http_body);
|
|
typedef int (*func_get_user_tasks)(void *agent, TaskQueryParams params, std::string* http_body);
|
|
typedef int (*func_get_printer_firmware)(void *agent, std::string dev_id, unsigned* http_code, std::string* http_body);
|
|
typedef int (*func_get_task_plate_index)(void *agent, std::string task_id, int* plate_index);
|
|
typedef int (*func_get_user_info)(void *agent, int* identifier);
|
|
typedef int (*func_request_bind_ticket)(void *agent, std::string* ticket);
|
|
typedef int (*func_get_subtask_info)(void *agent, std::string subtask_id, std::string* task_json, unsigned int* http_code, std::string *http_body);
|
|
typedef int (*func_get_slice_info)(void *agent, std::string project_id, std::string profile_id, int plate_index, std::string* slice_json);
|
|
typedef int (*func_query_bind_status)(void *agent, std::vector<std::string> query_list, unsigned int* http_code, std::string* http_body);
|
|
typedef int (*func_modify_printer_name)(void *agent, std::string dev_id, std::string dev_name);
|
|
typedef int (*func_get_camera_url)(void *agent, std::string dev_id, std::function<void(std::string)> callback);
|
|
typedef int (*func_get_design_staffpick)(void *agent, int offset, int limit, std::function<void(std::string)> callback);
|
|
typedef int (*func_start_pubilsh)(void *agent, PublishParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, std::string* out);
|
|
typedef int (*func_get_profile_3mf)(void *agent, BBLProfile* profile);
|
|
typedef int (*func_get_model_publish_url)(void *agent, std::string* url);
|
|
typedef int (*func_get_subtask)(void *agent, BBLModelTask* task, OnGetSubTaskFn getsub_fn);
|
|
typedef int (*func_get_model_mall_home_url)(void *agent, std::string* url);
|
|
typedef int (*func_get_model_mall_detail_url)(void *agent, std::string* url, std::string id);
|
|
typedef int (*func_get_my_profile)(void *agent, std::string token, unsigned int *http_code, std::string *http_body);
|
|
typedef int (*func_track_enable)(void *agent, bool enable);
|
|
typedef int (*func_track_remove_files)(void *agent);
|
|
typedef int (*func_track_event)(void *agent, std::string evt_key, std::string content);
|
|
typedef int (*func_track_header)(void *agent, std::string header);
|
|
typedef int (*func_track_update_property)(void *agent, std::string name, std::string value, std::string type);
|
|
typedef int (*func_track_get_property)(void *agent, std::string name, std::string& value, std::string type);
|
|
typedef int (*func_put_model_mall_rating_url)(
|
|
void *agent, int rating_id, int score, std::string content, std::vector<std::string> images, unsigned int &http_code, std::string &http_error);
|
|
typedef int (*func_get_oss_config)(void *agent, std::string &config, std::string country_code, unsigned int &http_code, std::string &http_error);
|
|
typedef int (*func_put_rating_picture_oss)(
|
|
void *agent, std::string &config, std::string &pic_oss_path, std::string model_id, int profile_id, unsigned int &http_code, std::string &http_error);
|
|
typedef int (*func_get_model_mall_rating_result)(void *agent, int job_id, std::string &rating_result, unsigned int &http_code, std::string &http_error);
|
|
|
|
typedef int (*func_get_mw_user_preference)(void *agent, std::function<void(std::string)> callback);
|
|
typedef int (*func_get_mw_user_4ulist)(void *agent, int seed, int limit, std::function<void(std::string)> callback);
|
|
|
|
//the NetworkAgent class
|
|
class NetworkAgent
|
|
{
|
|
|
|
public:
|
|
static std::string get_libpath_in_current_directory(std::string library_name);
|
|
static int initialize_network_module(bool using_backup = false);
|
|
static int unload_network_module();
|
|
#if defined(_MSC_VER) || defined(_WIN32)
|
|
static HMODULE get_bambu_source_entry();
|
|
#else
|
|
static void* get_bambu_source_entry();
|
|
#endif
|
|
static std::string get_version();
|
|
static void* get_network_function(const char* name);
|
|
NetworkAgent(std::string log_dir);
|
|
~NetworkAgent();
|
|
|
|
int init_log();
|
|
int set_config_dir(std::string config_dir);
|
|
int set_cert_file(std::string folder, std::string filename);
|
|
int set_country_code(std::string country_code);
|
|
int start();
|
|
int set_on_ssdp_msg_fn(OnMsgArrivedFn fn);
|
|
int set_on_user_login_fn(OnUserLoginFn fn);
|
|
int set_on_printer_connected_fn(OnPrinterConnectedFn fn);
|
|
int set_on_server_connected_fn(OnServerConnectedFn fn);
|
|
int set_on_http_error_fn(OnHttpErrorFn fn);
|
|
int set_get_country_code_fn(GetCountryCodeFn fn);
|
|
int set_on_subscribe_failure_fn(GetSubscribeFailureFn fn);
|
|
int set_on_message_fn(OnMessageFn fn);
|
|
int set_on_user_message_fn(OnMessageFn fn);
|
|
int set_on_local_connect_fn(OnLocalConnectedFn fn);
|
|
int set_on_local_message_fn(OnMessageFn fn);
|
|
int set_queue_on_main_fn(QueueOnMainFn fn);
|
|
int connect_server();
|
|
bool is_server_connected();
|
|
int refresh_connection();
|
|
int start_subscribe(std::string module);
|
|
int stop_subscribe(std::string module);
|
|
int add_subscribe(std::vector<std::string> dev_list);
|
|
int del_subscribe(std::vector<std::string> dev_list);
|
|
void enable_multi_machine(bool enable);
|
|
int start_device_subscribe();
|
|
int stop_device_subscribe();
|
|
int send_message(std::string dev_id, std::string json_str, int qos);
|
|
int connect_printer(std::string dev_id, std::string dev_ip, std::string username, std::string password, bool use_ssl);
|
|
int disconnect_printer();
|
|
int send_message_to_printer(std::string dev_id, std::string json_str, int qos);
|
|
bool start_discovery(bool start, bool sending);
|
|
int change_user(std::string user_info);
|
|
bool is_user_login();
|
|
int user_logout();
|
|
std::string get_user_id();
|
|
std::string get_user_name();
|
|
std::string get_user_avatar();
|
|
std::string get_user_nickanme();
|
|
std::string build_login_cmd();
|
|
std::string build_logout_cmd();
|
|
std::string build_login_info();
|
|
int get_model_id_from_desgin_id(std::string& desgin_id, std::string& model_id);
|
|
int ping_bind(std::string ping_code);
|
|
int bind(std::string dev_ip, std::string dev_id, std::string sec_link, std::string timezone, bool improved, OnUpdateStatusFn update_fn);
|
|
int unbind(std::string dev_id);
|
|
std::string get_bambulab_host();
|
|
std::string get_user_selected_machine();
|
|
int set_user_selected_machine(std::string dev_id);
|
|
int start_print(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, OnWaitFn wait_fn);
|
|
int start_local_print_with_record(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, OnWaitFn wait_fn);
|
|
int start_send_gcode_to_sdcard(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, OnWaitFn wait_fn);
|
|
int start_local_print(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn);
|
|
int start_sdcard_print(PrintParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn);
|
|
int get_user_presets(std::map<std::string, std::map<std::string, std::string>>* user_presets);
|
|
std::string request_setting_id(std::string name, std::map<std::string, std::string>* values_map, unsigned int* http_code);
|
|
int put_setting(std::string setting_id, std::string name, std::map<std::string, std::string>* values_map, unsigned int* http_code);
|
|
int get_setting_list(std::string bundle_version, ProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr);
|
|
int get_setting_list2(std::string bundle_version, CheckFn chk_fn, ProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr);
|
|
int delete_setting(std::string setting_id);
|
|
std::string get_studio_info_url();
|
|
int set_extra_http_header(std::map<std::string, std::string> extra_headers);
|
|
int get_my_message(int type, int after, int limit, unsigned int* http_code, std::string* http_body);
|
|
int check_user_task_report(int* task_id, bool* printable);
|
|
int get_user_print_info(unsigned int* http_code, std::string* http_body);
|
|
int get_user_tasks(TaskQueryParams params, std::string* http_body);
|
|
int get_printer_firmware(std::string dev_id, unsigned* http_code, std::string* http_body);
|
|
int get_task_plate_index(std::string task_id, int* plate_index);
|
|
int get_user_info(int* identifier);
|
|
int request_bind_ticket(std::string* ticket);
|
|
int get_subtask_info(std::string subtask_id, std::string* task_json, unsigned int* http_code, std::string* http_body);
|
|
int get_slice_info(std::string project_id, std::string profile_id, int plate_index, std::string* slice_json);
|
|
int query_bind_status(std::vector<std::string> query_list, unsigned int* http_code, std::string* http_body);
|
|
int modify_printer_name(std::string dev_id, std::string dev_name);
|
|
int get_camera_url(std::string dev_id, std::function<void(std::string)> callback);
|
|
int get_design_staffpick(int offset, int limit, std::function<void(std::string)> callback);
|
|
int start_publish(PublishParams params, OnUpdateStatusFn update_fn, WasCancelledFn cancel_fn, std::string* out);
|
|
int get_profile_3mf(BBLProfile* profile);
|
|
int get_model_publish_url(std::string* url);
|
|
int get_subtask(BBLModelTask* task, OnGetSubTaskFn getsub_fn);
|
|
int get_model_mall_home_url(std::string* url);
|
|
int get_model_mall_detail_url(std::string* url, std::string id);
|
|
int get_my_profile(std::string token, unsigned int* http_code, std::string* http_body);
|
|
int track_enable(bool enable);
|
|
int track_remove_files();
|
|
int track_event(std::string evt_key, std::string content);
|
|
int track_header(std::string header);
|
|
int track_update_property(std::string name, std::string value, std::string type = "string");
|
|
int track_get_property(std::string name, std::string& value, std::string type = "string");
|
|
int put_model_mall_rating(int design_id, int score, std::string content, std::vector<std::string> images, unsigned int &http_code, std::string &http_error);
|
|
int get_oss_config(std::string &config, std::string country_code, unsigned int &http_code, std::string &http_error);
|
|
int put_rating_picture_oss(std::string &config, std::string &pic_oss_path, std::string model_id, int profile_id, unsigned int &http_code, std::string &http_error);
|
|
int get_model_mall_rating_result(int job_id, std::string &rating_result, unsigned int &http_code, std::string &http_error);
|
|
bool get_track_enable() { return enable_track; }
|
|
|
|
int get_mw_user_preference(std::function<void(std::string)> callback);
|
|
int get_mw_user_4ulist(int seed, int limit, std::function<void(std::string)> callback);
|
|
|
|
private:
|
|
bool enable_track = false;
|
|
void* network_agent { nullptr };
|
|
|
|
static func_check_debug_consistent check_debug_consistent_ptr;
|
|
static func_get_version get_version_ptr;
|
|
static func_create_agent create_agent_ptr;
|
|
static func_destroy_agent destroy_agent_ptr;
|
|
static func_init_log init_log_ptr;
|
|
static func_set_config_dir set_config_dir_ptr;
|
|
static func_set_cert_file set_cert_file_ptr;
|
|
static func_set_country_code set_country_code_ptr;
|
|
static func_start start_ptr;
|
|
static func_set_on_ssdp_msg_fn set_on_ssdp_msg_fn_ptr;
|
|
static func_set_on_user_login_fn set_on_user_login_fn_ptr;
|
|
static func_set_on_printer_connected_fn set_on_printer_connected_fn_ptr;
|
|
static func_set_on_server_connected_fn set_on_server_connected_fn_ptr;
|
|
static func_set_on_http_error_fn set_on_http_error_fn_ptr;
|
|
static func_set_get_country_code_fn set_get_country_code_fn_ptr;
|
|
static func_set_on_subscribe_failure_fn set_on_subscribe_failure_fn_ptr;
|
|
static func_set_on_message_fn set_on_message_fn_ptr;
|
|
static func_set_on_user_message_fn set_on_user_message_fn_ptr;
|
|
static func_set_on_local_connect_fn set_on_local_connect_fn_ptr;
|
|
static func_set_on_local_message_fn set_on_local_message_fn_ptr;
|
|
static func_set_queue_on_main_fn set_queue_on_main_fn_ptr;
|
|
static func_connect_server connect_server_ptr;
|
|
static func_is_server_connected is_server_connected_ptr;
|
|
static func_refresh_connection refresh_connection_ptr;
|
|
static func_start_subscribe start_subscribe_ptr;
|
|
static func_stop_subscribe stop_subscribe_ptr;
|
|
static func_add_subscribe add_subscribe_ptr;
|
|
static func_del_subscribe del_subscribe_ptr;
|
|
static func_enable_multi_machine enable_multi_machine_ptr;
|
|
static func_start_device_subscribe start_device_subscribe_ptr;
|
|
static func_stop_device_subscribe stop_device_subscribe_ptr;
|
|
static func_send_message send_message_ptr;
|
|
static func_connect_printer connect_printer_ptr;
|
|
static func_disconnect_printer disconnect_printer_ptr;
|
|
static func_send_message_to_printer send_message_to_printer_ptr;
|
|
static func_start_discovery start_discovery_ptr;
|
|
static func_change_user change_user_ptr;
|
|
static func_is_user_login is_user_login_ptr;
|
|
static func_user_logout user_logout_ptr;
|
|
static func_get_user_id get_user_id_ptr;
|
|
static func_get_user_name get_user_name_ptr;
|
|
static func_get_user_avatar get_user_avatar_ptr;
|
|
static func_get_user_nickanme get_user_nickanme_ptr;
|
|
static func_build_login_cmd build_login_cmd_ptr;
|
|
static func_build_logout_cmd build_logout_cmd_ptr;
|
|
static func_build_login_info build_login_info_ptr;
|
|
static func_get_model_id_from_desgin_id get_model_id_from_desgin_id_ptr;
|
|
static func_ping_bind ping_bind_ptr;
|
|
static func_bind bind_ptr;
|
|
static func_unbind unbind_ptr;
|
|
static func_get_bambulab_host get_bambulab_host_ptr;
|
|
static func_get_user_selected_machine get_user_selected_machine_ptr;
|
|
static func_set_user_selected_machine set_user_selected_machine_ptr;
|
|
static func_start_print start_print_ptr;
|
|
static func_start_local_print_with_record start_local_print_with_record_ptr;
|
|
static func_start_send_gcode_to_sdcard start_send_gcode_to_sdcard_ptr;
|
|
static func_start_local_print start_local_print_ptr;
|
|
static func_start_sdcard_print start_sdcard_print_ptr;
|
|
static func_get_user_presets get_user_presets_ptr;
|
|
static func_request_setting_id request_setting_id_ptr;
|
|
static func_put_setting put_setting_ptr;
|
|
static func_get_setting_list get_setting_list_ptr;
|
|
static func_get_setting_list2 get_setting_list2_ptr;
|
|
static func_delete_setting delete_setting_ptr;
|
|
static func_get_studio_info_url get_studio_info_url_ptr;
|
|
static func_set_extra_http_header set_extra_http_header_ptr;
|
|
static func_get_my_message get_my_message_ptr;
|
|
static func_check_user_task_report check_user_task_report_ptr;
|
|
static func_get_user_print_info get_user_print_info_ptr;
|
|
static func_get_user_tasks get_user_tasks_ptr;
|
|
static func_get_printer_firmware get_printer_firmware_ptr;
|
|
static func_get_task_plate_index get_task_plate_index_ptr;
|
|
static func_get_user_info get_user_info_ptr;
|
|
static func_request_bind_ticket request_bind_ticket_ptr;
|
|
static func_get_subtask_info get_subtask_info_ptr;
|
|
static func_get_slice_info get_slice_info_ptr;
|
|
static func_query_bind_status query_bind_status_ptr;
|
|
static func_modify_printer_name modify_printer_name_ptr;
|
|
static func_get_camera_url get_camera_url_ptr;
|
|
static func_get_design_staffpick get_design_staffpick_ptr;
|
|
static func_start_pubilsh start_publish_ptr;
|
|
static func_get_profile_3mf get_profile_3mf_ptr;
|
|
static func_get_model_publish_url get_model_publish_url_ptr;
|
|
static func_get_subtask get_subtask_ptr;
|
|
static func_get_model_mall_home_url get_model_mall_home_url_ptr;
|
|
static func_get_model_mall_detail_url get_model_mall_detail_url_ptr;
|
|
static func_get_my_profile get_my_profile_ptr;
|
|
static func_track_enable track_enable_ptr;
|
|
static func_track_remove_files track_remove_files_ptr;
|
|
static func_track_event track_event_ptr;
|
|
static func_track_header track_header_ptr;
|
|
static func_track_update_property track_update_property_ptr;
|
|
static func_track_get_property track_get_property_ptr;
|
|
static func_put_model_mall_rating_url put_model_mall_rating_url_ptr;
|
|
static func_get_oss_config get_oss_config_ptr;
|
|
static func_put_rating_picture_oss put_rating_picture_oss_ptr;
|
|
static func_get_model_mall_rating_result get_model_mall_rating_result_ptr;
|
|
|
|
static func_get_mw_user_preference get_mw_user_preference_ptr;
|
|
static func_get_mw_user_4ulist get_mw_user_4ulist_ptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|