An open API service indexing awesome lists of open source software.

https://github.com/rtbo/wayland-client-d

D bindings to wayland-client library
https://github.com/rtbo/wayland-client-d

Last synced: about 1 year ago
JSON representation

D bindings to wayland-client library

Awesome Lists containing this project

README

          

# wayland-client-d

D bindings to wayland-client library.

Project not maintained anymore.
Superseded by the [wayland-d](https://github.com/rtbo/wayland-d.git) project.

D code sample:

```d
module connect;

import wayland.client;
import std.stdio;

int main(string[] args)
{
// with version(Dynamic) of wayland-client-d, no linkage is necessary
// but loadWaylandClient() must be called before any use of the library
// with default version of wayland-client-d, one must link with wayland-client-d
// and initialization is performed automatically
loadWaylandClient();

wl_display *display = wl_display_connect(null);
if (!display) {
stderr.writeln("Can't connect to display");
return 1;
}
writeln("connected to display");

wl_display_disconnect(display);
writeln("disconnected from display");

return 0;
}
```