summary refs log tree commit diff stats
path: root/lib/oldwrappers/x11/xinerama.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-05-02 00:01:50 +0200
committerAraq <rumpf_a@web.de>2011-05-02 00:01:50 +0200
commit4d5c3ebd468fa17a02a9abb9814c04e18baef309 (patch)
treec9e3aaac91fbc6c3d78315434f9438d3c0245d7c /lib/oldwrappers/x11/xinerama.nim
parentfcabc0f9f46cbec1b9755110f29312c81d3a451a (diff)
downloadNim-4d5c3ebd468fa17a02a9abb9814c04e18baef309.tar.gz
little repo cleanup
Diffstat (limited to 'lib/oldwrappers/x11/xinerama.nim')
-rwxr-xr-xlib/oldwrappers/x11/xinerama.nim25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/oldwrappers/x11/xinerama.nim b/lib/oldwrappers/x11/xinerama.nim
deleted file mode 100755
index 96f5d7da3..000000000
--- a/lib/oldwrappers/x11/xinerama.nim
+++ /dev/null
@@ -1,25 +0,0 @@
-# Converted from X11/Xinerama.h 
-import                        
-  xlib
-
-const
-  xineramaLib = "libXinerama.so"
-
-type 
-  PXineramaScreenInfo* = ptr TXineramaScreenInfo
-  TXineramaScreenInfo*{.final.} = object 
-    screen_number*: cint
-    x_org*: int16
-    y_org*: int16
-    width*: int16
-    height*: int16
-
-
-proc XineramaQueryExtension*(dpy: PDisplay, event_base: Pcint, error_base: Pcint): TBool{.
-    cdecl, dynlib: xineramaLib, importc.}
-proc XineramaQueryVersion*(dpy: PDisplay, major: Pcint, minor: Pcint): TStatus{.
-    cdecl, dynlib: xineramaLib, importc.}
-proc XineramaIsActive*(dpy: PDisplay): TBool{.cdecl, dynlib: xineramaLib, importc.}
-proc XineramaQueryScreens*(dpy: PDisplay, number: Pcint): PXineramaScreenInfo{.
-    cdecl, dynlib: xineramaLib, importc.}
-
?h=v1.4.4&id=4e01caf19cfbc798862e6b8b2dbd77328c8f99a2'>^
4c13e1f2 ^

f07bb12f ^



4c13e1f2 ^


f07bb12f ^











f07bb12f ^















4c13e1f2 ^











f07bb12f ^
4c13e1f2 ^
f07bb12f ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130