ssu
Loading...
Searching...
No Matches
sandboxhook.cpp
1#include <dlfcn.h>
2
3#include "libssu/sandbox_p.h"
4
5extern "C" void qt_startup_hook()
6{
7 Sandbox *const sandbox = new Sandbox();
8 Q_UNUSED(sandbox);
9
10 static void(*next_qt_startup_hook)() = (void (*)()) dlsym(RTLD_NEXT, "qt_startup_hook");
11 next_qt_startup_hook();
12}
Helps to redirect file operations into sandbox directory.
Definition sandbox_p.h:22