@@ -10,7 +10,6 @@ pub struct uiInitOptions {
10
10
pub Size : size_t ,
11
11
}
12
12
13
- #[ link( name = "ui" ) ]
14
13
extern {
15
14
pub fn uiInit ( options : * mut uiInitOptions ) -> * const c_char ;
16
15
pub fn uiUninit ( ) ;
@@ -45,7 +44,6 @@ pub struct uiControl {
45
44
pub Disable : extern "C" fn ( this : * mut uiControl ) ,
46
45
}
47
46
48
- #[ link( name = "ui" ) ]
49
47
extern {
50
48
pub fn uiControlDestroy ( control : * mut uiControl ) ;
51
49
pub fn uiControlHandle ( control : * mut uiControl ) -> usize ;
@@ -70,7 +68,6 @@ extern {
70
68
71
69
pub enum uiWindow { }
72
70
73
- #[ link( name = "ui" ) ]
74
71
extern {
75
72
pub fn uiWindowTitle ( w : * mut uiWindow ) -> * mut c_char ;
76
73
pub fn uiWindowSetTitle ( w : * mut uiWindow , title : * const c_char ) ;
@@ -86,7 +83,6 @@ extern {
86
83
87
84
pub enum uiButton { }
88
85
89
- #[ link( name = "ui" ) ]
90
86
extern {
91
87
pub fn uiButtonText ( b : * mut uiButton ) -> * mut c_char ;
92
88
pub fn uiButtonSetText ( b : * mut uiButton , text : * const c_char ) ;
@@ -98,7 +94,6 @@ extern {
98
94
99
95
pub enum uiBox { }
100
96
101
- #[ link( name = "ui" ) ]
102
97
extern {
103
98
pub fn uiBoxAppend ( b : * mut uiBox , child : * mut uiControl , stretchy : c_int ) ;
104
99
pub fn uiBoxDelete ( b : * mut uiBox , index : uintmax_t ) ;
@@ -110,7 +105,6 @@ extern {
110
105
111
106
pub enum uiEntry { }
112
107
113
- #[ link( name = "ui" ) ]
114
108
extern {
115
109
pub fn uiEntryText ( e : * mut uiEntry ) -> * mut c_char ;
116
110
pub fn uiEntrySetText ( e : * mut uiEntry , text : * const c_char ) ;
@@ -124,7 +118,6 @@ extern {
124
118
125
119
pub enum uiCheckbox { }
126
120
127
- #[ link( name = "ui" ) ]
128
121
extern {
129
122
pub fn uiCheckboxText ( c : * mut uiCheckbox ) -> * mut c_char ;
130
123
pub fn uiCheckboxSetText ( c : * mut uiCheckbox , text : * const c_char ) ;
@@ -138,7 +131,6 @@ extern {
138
131
139
132
pub enum uiLabel { }
140
133
141
- #[ link( name = "ui" ) ]
142
134
extern {
143
135
pub fn uiLabelText ( l : * mut uiLabel ) -> * mut c_char ;
144
136
pub fn uiLabelSetText ( l : * mut uiLabel , text : * const c_char ) ;
@@ -147,7 +139,6 @@ extern {
147
139
148
140
pub enum uiTab { }
149
141
150
- #[ link( name = "ui" ) ]
151
142
extern {
152
143
pub fn uiTabAppend ( t : * mut uiTab , name : * const c_char , c : * mut uiControl ) ;
153
144
pub fn uiTabInsertAt ( t : * mut uiTab , name : * const c_char , before : uintmax_t , c : * mut uiControl ) ;
@@ -160,7 +151,6 @@ extern {
160
151
161
152
pub enum uiGroup { }
162
153
163
- #[ link( name = "ui" ) ]
164
154
extern {
165
155
pub fn uiGroupTitle ( g : * mut uiGroup ) -> * mut c_char ;
166
156
pub fn uiGroupSetTitle ( g : * mut uiGroup , title : * const c_char ) ;
@@ -172,7 +162,6 @@ extern {
172
162
173
163
pub enum uiSpinbox { }
174
164
175
- #[ link( name = "ui" ) ]
176
165
extern {
177
166
pub fn uiSpinboxValue ( s : * mut uiSpinbox ) -> intmax_t ;
178
167
pub fn uiSpinboxSetValue ( s : * mut uiSpinbox , value : intmax_t ) ;
@@ -184,15 +173,13 @@ extern {
184
173
185
174
pub enum uiProgressBar { }
186
175
187
- #[ link( name = "ui" ) ]
188
176
extern {
189
177
pub fn uiProgressBarSetValue ( p : * mut uiProgressBar , n : c_int ) ;
190
178
pub fn uiNewProgressBar ( ) -> * mut uiProgressBar ;
191
179
}
192
180
193
181
pub enum uiSlider { }
194
182
195
- #[ link( name = "ui" ) ]
196
183
extern {
197
184
pub fn uiSliderValue ( s : * mut uiSlider ) -> intmax_t ;
198
185
pub fn uiSliderSetValue ( s : * mut uiSlider , value : intmax_t ) ;
@@ -204,14 +191,12 @@ extern {
204
191
205
192
pub enum uiSeparator { }
206
193
207
- #[ link( name = "ui" ) ]
208
194
extern {
209
195
pub fn uiNewHorizontalSeparator ( ) -> * mut uiSeparator ;
210
196
}
211
197
212
198
pub enum uiCombobox { }
213
199
214
- #[ link( name = "ui" ) ]
215
200
extern {
216
201
pub fn uiComboboxAppend ( c : * mut uiCombobox , text : * const c_char ) ;
217
202
pub fn uiComboboxSelected ( c : * mut uiCombobox ) -> intmax_t ;
@@ -225,15 +210,13 @@ extern {
225
210
226
211
pub enum uiRadioButtons { }
227
212
228
- #[ link( name = "ui" ) ]
229
213
extern {
230
214
pub fn uiRadioButtonsAppend ( r : * mut uiRadioButtons , text : * const c_char ) ;
231
215
pub fn uiNewRadioButtons ( ) -> * mut uiRadioButtons ;
232
216
}
233
217
234
218
pub enum uiDateTimePicker { }
235
219
236
- #[ link( name = "ui" ) ]
237
220
extern {
238
221
pub fn uiNewDateTimePicker ( ) -> * mut uiDateTimePicker ;
239
222
pub fn uiNewDatePicker ( ) -> * mut uiDateTimePicker ;
@@ -242,7 +225,6 @@ extern {
242
225
243
226
pub enum uiMultilineEntry { }
244
227
245
- #[ link( name = "ui" ) ]
246
228
extern {
247
229
pub fn uiMultilineEntryText ( e : * mut uiMultilineEntry ) -> * mut c_char ;
248
230
pub fn uiMultilineEntrySetText ( e : * mut uiMultilineEntry , text : * const c_char ) ;
@@ -257,7 +239,6 @@ extern {
257
239
258
240
pub enum uiMenuItem { }
259
241
260
- #[ link( name = "ui" ) ]
261
242
extern {
262
243
pub fn uiMenuItemEnable ( m : * mut uiMenuItem ) ;
263
244
pub fn uiMenuItemDisable ( m : * mut uiMenuItem ) ;
@@ -272,7 +253,6 @@ extern {
272
253
273
254
pub enum uiMenu { }
274
255
275
- #[ link( name = "ui" ) ]
276
256
extern {
277
257
pub fn uiMenuAppendItem ( m : * mut uiMenu , name : * const c_char ) -> * mut uiMenuItem ;
278
258
pub fn uiMenuAppendCheckItem ( m : * mut uiMenu , name : * const c_char ) -> * mut uiMenuItem ;
@@ -283,7 +263,6 @@ extern {
283
263
pub fn uiNewMenu ( name : * const c_char ) -> * mut uiMenu ;
284
264
}
285
265
286
- #[ link( name = "ui" ) ]
287
266
extern {
288
267
pub fn uiOpenFile ( parent : * mut uiWindow ) -> * mut c_char ;
289
268
pub fn uiSaveFile ( parent : * mut uiWindow ) -> * mut c_char ;
@@ -311,7 +290,6 @@ pub struct uiAreaHandler {
311
290
-> c_int ,
312
291
}
313
292
314
- #[ link( name = "ui" ) ]
315
293
extern {
316
294
pub fn uiAreaSetSize ( a : * mut uiArea , width : intmax_t , height : intmax_t ) ;
317
295
pub fn uiAreaQueueRedrawAll ( a : * mut uiArea ) ;
@@ -434,13 +412,11 @@ pub struct uiDrawStrokeParams {
434
412
pub DashPhase : c_double ,
435
413
}
436
414
437
- #[ link( name = "ui" ) ]
438
415
extern {
439
416
pub fn uiDrawNewPath ( fillMode : uiDrawFillMode ) -> * mut uiDrawPath ;
440
417
pub fn uiDrawFreePath ( p : * mut uiDrawPath ) ;
441
418
}
442
419
443
- #[ link( name = "ui" ) ]
444
420
extern {
445
421
pub fn uiDrawPathNewFigure ( p : * mut uiDrawPath , x : c_double , y : c_double ) ;
446
422
pub fn uiDrawPathNewFigureWithArc ( p : * mut uiDrawPath ,
@@ -705,7 +681,6 @@ pub struct uiAreaKeyEvent {
705
681
706
682
pub enum uiFontButton { }
707
683
708
- #[ link( name = "ui" ) ]
709
684
extern {
710
685
pub fn uiFontButtonFont ( b : * mut uiFontButton ) -> * mut uiDrawTextFont ;
711
686
pub fn uiFontButtonOnChanged ( b : * mut uiFontButton ,
@@ -716,7 +691,6 @@ extern {
716
691
717
692
pub enum uiColorButton { }
718
693
719
- #[ link( name = "ui" ) ]
720
694
extern {
721
695
pub fn uiColorButtonColor ( b : * mut uiColorButton ,
722
696
r : * mut c_double ,
0 commit comments