2021-07-05 04:38:25 -03:00
|
|
|
#include <AK/URL.h>
|
|
|
|
|
#include <LibCore/IODevice.h>
|
|
|
|
|
|
|
|
|
|
endpoint FileSystemAccessServer
|
|
|
|
|
{
|
2021-09-06 01:51:32 -03:00
|
|
|
request_file_read_only_approved(i32 window_server_client_id, i32 window_id, String path) =|
|
2021-07-11 12:16:26 -03:00
|
|
|
request_file(i32 window_server_client_id, i32 window_id, String path, Core::OpenMode requested_access) =|
|
2021-08-05 22:34:14 -03:00
|
|
|
prompt_open_file(i32 window_server_client_id, i32 window_id, String window_title, String path_to_view, Core::OpenMode requested_access) =|
|
2021-07-11 12:16:26 -03:00
|
|
|
prompt_save_file(i32 window_server_client_id, i32 window_id,String title, String ext, String path_to_view, Core::OpenMode requested_access) =|
|
2021-07-18 10:48:52 -03:00
|
|
|
|
|
|
|
|
expose_window_server_client_id() => (i32 client_id)
|
2021-07-05 04:38:25 -03:00
|
|
|
}
|