| 8 | #include <lemon/core/sharedmem.h> |
| 9 | |
| 10 | WMInstance::WMInstance(surface_t& surface, handle_t svc, const char* ifName) : server(svc, ifName, LEMONWM_MSG_SIZE){ |
| 11 | this->surface = surface; |
| 12 | this->screenSurface = surface; |
| 13 | screenSurface.buffer = nullptr; |
| 14 | } |
| 15 | |
| 16 | void* _InitializeShellConnection(void* inst){ |
| 17 | return reinterpret_cast<WMInstance*>(inst)->InitializeShellConnection(); |
nothing calls this directly
no outgoing calls
no test coverage detected