| 7 | namespace Lemon::Shell { |
| 8 | |
| 9 | void AddWindow(long id, short state, const std::string& title, Endpoint& client){ |
| 10 | client.Queue(Message(Lemon::Shell::LemonShellAddWindow, id, state, title)); |
| 11 | } |
| 12 | |
| 13 | void RemoveWindow(long id, Endpoint& client){ |
| 14 | client.Queue(Message(Lemon::Shell::LemonShellRemoveWindow, id)); |