mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 08:01:04 +00:00
[X11] Added XGetAtomName() function
This commit is contained in:
parent
779ff311c2
commit
073ddf1bef
|
@ -176,6 +176,9 @@ namespace OpenTK.Platform.X11
|
|||
[DllImport("libX11", EntryPoint = "XInternAtoms")]
|
||||
public extern static int XInternAtoms(IntPtr display, string[] atom_names, int atom_count, bool only_if_exists, IntPtr[] atoms);
|
||||
|
||||
[DllImport("libX11", EntryPoint = "XGetAtomName")]
|
||||
public extern static IntPtr XGetAtomName(IntPtr display, IntPtr atom);
|
||||
|
||||
[DllImport("libX11", EntryPoint = "XSetWMProtocols")]
|
||||
public extern static int XSetWMProtocols(IntPtr display, IntPtr window, IntPtr[] protocols, int count);
|
||||
|
||||
|
|
Loading…
Reference in a new issue