2021-07-03 01:40:44 -03:00
|
|
|
#include <LibCore/AnonymousBuffer.h>
|
|
|
|
|
|
2021-04-25 08:19:53 -03:00
|
|
|
endpoint ImageDecoderServer
|
2020-06-22 16:35:22 -03:00
|
|
|
{
|
2025-01-03 13:19:46 -03:00
|
|
|
init_transport(int peer_pid) => (int peer_pid)
|
2024-04-19 17:23:16 -03:00
|
|
|
decode_image(Core::AnonymousBuffer data, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type) => (i64 image_id)
|
|
|
|
|
cancel_decoding(i64 image_id) =|
|
2024-06-26 16:44:42 -03:00
|
|
|
|
|
|
|
|
connect_new_clients(size_t count) => (Vector<IPC::File> sockets)
|
2020-06-22 16:35:22 -03:00
|
|
|
}
|