#48: Support pinning files to cache [partial]

This commit is contained in:
2020-12-11 16:24:24 -06:00
parent d88b77b46a
commit 775b852f91
7 changed files with 280 additions and 9 deletions

View File

@@ -122,6 +122,15 @@ exports.IPC_Get_Config_Reply = 'get_config_reply';
exports.IPC_Get_Config_Template = 'get_config_template';
exports.IPC_Get_Config_Template_Reply = 'get_config_template_reply';
exports.IPC_Get_Directory_Items = 'get_directory_items';
exports.IPC_Get_Directory_Items_Reply = 'get_directory_items_reply';
exports.IPC_Get_Pinned_Files = 'get_pinned_files';
exports.IPC_Get_Pinned_Files_Reply = 'get_pinned_files_reply';
exports.IPC_Get_Pinned_Files_Status = 'get_pinned_files_status';
exports.IPC_Get_Pinned_Files_Status_Reply = 'get_pinned_files_status_reply';
exports.IPC_Get_Platform = 'get_platform';
exports.IPC_Get_Platform_Reply = 'get_platform_reply';
@@ -150,6 +159,8 @@ exports.IPC_Reboot_System = 'reboot_system';
exports.IPC_Save_State = 'save_state';
exports.IPC_Set_Pinned = 'set_pinned';
exports.IPC_Show_Window = 'show_window';
exports.IPC_Set_Config_Values = 'set_config_values';