1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-04 11:17:35 +00:00
serenity/Userland/Services/SymbolServer/SymbolServer.ipc
Gunnar Beutner 9e22e9ce88 Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
2021-05-03 21:14:40 +02:00

6 lines
157 B
Text

endpoint SymbolServer
{
greet() => ()
symbolicate(String path, u32 address) => (bool success, String name, u32 offset, String filename, u32 line)
}