Davipb
Davipb
This is mostly a way to save space when storing a boolean array, not an ad-hoc bitfield creator. A bitfield lets you change a fixed set of flags, but a...
I don't think this is an issue with the .NET Framework itself, but rather with the "Any CPU" Platform. If you change the Platform to x64 or x86, the (correct)...
Full X11 support (copy and paste) is now available in 0.2.1 🙂
Could we remove the hard requirement for `libx11` and `libwayland` from the ELF header and try to load them at runtime with [`dlopen`](https://man7.org/linux/man-pages/man3/dlopen.3.html)? If they fail, we assume that the...
Looks like `dlopen` doesn't relocate symbols for objects that have already been loaded, so we have two options: 1. Remove `libx11` and `libwayland` as compile dependencies entirely, use [`dlsym`](https://man7.org/linux/man-pages/man3/dlsym.3.html) to...
> embedding the files could be difficult because C's embed only made it into the latest C standard and won't be coming officially to C++ for years. We can start...
@Antiz96 X11 and Wayland are now optional as of #40
> EDIT: Forget it... It's only the provided [prebuilt binary](https://github.com/Slackadays/Clipboard/releases/download/0.2.1r2/clipboard-linux-amd64.zip) that has X11/Wayland support out of the box, right? I know you already figured it out, but just to make...