1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/Services/ImageDecoder/ImageDecoderServer.ipc

10 lines
358 B
Text

#include <LibCore/AnonymousBuffer.h>
endpoint ImageDecoderServer
{
init_transport(int peer_pid) => (int peer_pid)
decode_image(Core::AnonymousBuffer data, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type) => (i64 image_id)
cancel_decoding(i64 image_id) =|
connect_new_clients(size_t count) => (Vector<IPC::File> sockets)
}