mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-24 20:59:52 +00:00
Merge pull request #6684 from ddenizozgur/fix-x11-XInternAtoms
vendor/x11: fix missing only_if_exists parameter in XInternAtoms
This commit is contained in:
19
vendor/x11/xlib/xlib_procs.odin
vendored
19
vendor/x11/xlib/xlib_procs.odin
vendored
@@ -316,9 +316,10 @@ foreign xlib {
|
||||
) -> Atom ---
|
||||
InternAtoms :: proc(
|
||||
display: ^Display,
|
||||
names: [^]cstring,
|
||||
count: i32,
|
||||
atoms: [^]Atom,
|
||||
names: [^]cstring,
|
||||
count: i32,
|
||||
only_if_exists: b32,
|
||||
atoms_return: [^]Atom
|
||||
) -> Status ---
|
||||
GetAtomName :: proc(
|
||||
display: ^Display,
|
||||
@@ -657,12 +658,12 @@ foreign xlib {
|
||||
SetGraphicsExposures :: proc(display: ^Display, gc: GC, exp: b32) ---
|
||||
// Graphics functions
|
||||
ClearArea :: proc(
|
||||
display: ^Display,
|
||||
window: Window,
|
||||
x: i32,
|
||||
y: i32,
|
||||
width: u32,
|
||||
height: u32,
|
||||
display: ^Display,
|
||||
window: Window,
|
||||
x: i32,
|
||||
y: i32,
|
||||
width: u32,
|
||||
height: u32,
|
||||
exp: b32,
|
||||
) ---
|
||||
ClearWindow :: proc(
|
||||
|
||||
Reference in New Issue
Block a user