-
Notifications
You must be signed in to change notification settings - Fork 4
/
RadioGroup.inc
787 lines (669 loc) · 26 KB
/
RadioGroup.inc
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
//----------------------------------------
// ´úÂëÓÉGenlibVcl¹¤¾ß×Ô¶¯Éú³É¡£
// Copyright ? ying32. All Rights Reserved.
//
//----------------------------------------
function RadioGroup_Create(AOwner: TComponent): TRadioGroup; cdecl;
begin
Result := TRadioGroup.Create(AOwner);
end;
procedure RadioGroup_Free(AObj: TRadioGroup); cdecl;
begin
AObj.Free;
end;
procedure RadioGroup_FlipChildren(AObj: TRadioGroup; AllLevels: LongBool); cdecl;
begin
AObj.FlipChildren(AllLevels);
end;
function RadioGroup_CanFocus(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.CanFocus;
end;
function RadioGroup_Focused(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.Focused;
end;
function RadioGroup_HandleAllocated(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.HandleAllocated;
end;
procedure RadioGroup_Invalidate(AObj: TRadioGroup); cdecl;
begin
AObj.Invalidate;
end;
procedure RadioGroup_Realign(AObj: TRadioGroup); cdecl;
begin
AObj.Realign;
end;
procedure RadioGroup_Repaint(AObj: TRadioGroup); cdecl;
begin
AObj.Repaint;
end;
procedure RadioGroup_ScaleBy(AObj: TRadioGroup; M: Integer; D: Integer); cdecl;
begin
AObj.ScaleBy(M, D);
end;
procedure RadioGroup_SetBounds(AObj: TRadioGroup; ALeft: Integer; ATop: Integer; AWidth: Integer; AHeight: Integer); cdecl;
begin
AObj.SetBounds(ALeft, ATop, AWidth, AHeight);
end;
procedure RadioGroup_SetFocus(AObj: TRadioGroup); cdecl;
begin
AObj.SetFocus;
end;
procedure RadioGroup_Update(AObj: TRadioGroup); cdecl;
begin
AObj.Update;
end;
procedure RadioGroup_BringToFront(AObj: TRadioGroup); cdecl;
begin
AObj.BringToFront;
end;
function RadioGroup_HasParent(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.HasParent;
end;
procedure RadioGroup_Hide(AObj: TRadioGroup); cdecl;
begin
AObj.Hide;
end;
function RadioGroup_Perform(AObj: TRadioGroup; Msg: Cardinal; WParam: NativeUInt; LParam: NativeInt): NativeInt; cdecl;
begin
Result := AObj.Perform(Msg, WParam, LParam);
end;
procedure RadioGroup_Refresh(AObj: TRadioGroup); cdecl;
begin
AObj.Refresh;
end;
procedure RadioGroup_SendToBack(AObj: TRadioGroup); cdecl;
begin
AObj.SendToBack;
end;
procedure RadioGroup_Show(AObj: TRadioGroup); cdecl;
begin
AObj.Show;
end;
function RadioGroup_GetTextBuf(AObj: TRadioGroup; Buffer: PWideChar; BufSize: Integer): Integer; cdecl;
begin
Result := AObj.GetTextBuf(PChar(Buffer), BufSize);
end;
function RadioGroup_FindComponent(AObj: TRadioGroup; AName: PWideChar): TComponent; cdecl;
begin
Result := AObj.FindComponent(AName);
end;
function RadioGroup_GetNamePath(AObj: TRadioGroup): PWideChar; cdecl;
begin
Result := PWideChar(AObj.GetNamePath);
end;
procedure RadioGroup_Assign(AObj: TRadioGroup; Source: TPersistent); cdecl;
begin
AObj.Assign(Source);
end;
function RadioGroup_ClassName(AObj: TRadioGroup): PWideChar; cdecl;
begin
Result := ShortstrToPWideChar(AObj.ClassName);
end;
function RadioGroup_Equals(AObj: TRadioGroup; Obj: TObject): LongBool; cdecl;
begin
Result := AObj.Equals(Obj);
end;
function RadioGroup_GetHashCode(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.GetHashCode;
end;
function RadioGroup_ToString(AObj: TRadioGroup): PWideChar; cdecl;
begin
Result := PWideChar(AObj.ToString);
end;
function RadioGroup_GetAlign(AObj: TRadioGroup): TAlign; cdecl;
begin
Result := AObj.Align;
end;
procedure RadioGroup_SetAlign(AObj: TRadioGroup; AValue: TAlign); cdecl;
begin
AObj.Align := AValue;
end;
function RadioGroup_GetAnchors(AObj: TRadioGroup): TAnchors; cdecl;
begin
Result := AObj.Anchors;
end;
procedure RadioGroup_SetAnchors(AObj: TRadioGroup; AValue: TAnchors); cdecl;
begin
AObj.Anchors := AValue;
end;
function RadioGroup_GetBiDiMode(AObj: TRadioGroup): TBiDiMode; cdecl;
begin
Result := AObj.BiDiMode;
end;
procedure RadioGroup_SetBiDiMode(AObj: TRadioGroup; AValue: TBiDiMode); cdecl;
begin
AObj.BiDiMode := AValue;
end;
function RadioGroup_GetCaption(AObj: TRadioGroup): PWideChar; cdecl;
begin
Result := PWideChar(AObj.Caption);
end;
procedure RadioGroup_SetCaption(AObj: TRadioGroup; AValue: PWideChar); cdecl;
begin
AObj.Caption := AValue;
end;
function RadioGroup_GetColor(AObj: TRadioGroup): TColor; cdecl;
begin
Result := AObj.Color;
end;
procedure RadioGroup_SetColor(AObj: TRadioGroup; AValue: TColor); cdecl;
begin
AObj.Color := AValue;
end;
function RadioGroup_GetColumns(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.Columns;
end;
procedure RadioGroup_SetColumns(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.Columns := AValue;
end;
function RadioGroup_GetDoubleBuffered(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.DoubleBuffered;
end;
procedure RadioGroup_SetDoubleBuffered(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.DoubleBuffered := AValue;
end;
function RadioGroup_GetEnabled(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.Enabled;
end;
procedure RadioGroup_SetEnabled(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.Enabled := AValue;
end;
function RadioGroup_GetFont(AObj: TRadioGroup): TFont; cdecl;
begin
Result := AObj.Font;
end;
procedure RadioGroup_SetFont(AObj: TRadioGroup; AValue: TFont); cdecl;
begin
AObj.Font := AValue;
end;
function RadioGroup_GetItemIndex(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.ItemIndex;
end;
procedure RadioGroup_SetItemIndex(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.ItemIndex := AValue;
end;
function RadioGroup_GetItems(AObj: TRadioGroup): TStrings; cdecl;
begin
Result := AObj.Items;
end;
procedure RadioGroup_SetItems(AObj: TRadioGroup; AValue: TStrings); cdecl;
begin
AObj.Items := AValue;
end;
//function RadioGroup_GetParentBackground(AObj: TRadioGroup): LongBool; cdecl;
//begin
// Result := AObj.ParentBackground;
//end;
//
//procedure RadioGroup_SetParentBackground(AObj: TRadioGroup; AValue: LongBool); cdecl;
//begin
// AObj.ParentBackground := AValue;
//end;
function RadioGroup_GetParentColor(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.ParentColor;
end;
procedure RadioGroup_SetParentColor(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.ParentColor := AValue;
end;
//function RadioGroup_GetParentCtl3D(AObj: TRadioGroup): LongBool; cdecl;
//begin
// Result := AObj.ParentCtl3D;
//end;
//
//procedure RadioGroup_SetParentCtl3D(AObj: TRadioGroup; AValue: LongBool); cdecl;
//begin
// AObj.ParentCtl3D := AValue;
//end;
//
//function RadioGroup_GetParentDoubleBuffered(AObj: TRadioGroup): LongBool; cdecl;
//begin
// Result := AObj.ParentDoubleBuffered;
//end;
//
//procedure RadioGroup_SetParentDoubleBuffered(AObj: TRadioGroup; AValue: LongBool); cdecl;
//begin
// AObj.ParentDoubleBuffered := AValue;
//end;
function RadioGroup_GetParentFont(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.ParentFont;
end;
procedure RadioGroup_SetParentFont(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.ParentFont := AValue;
end;
function RadioGroup_GetParentShowHint(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.ParentShowHint;
end;
procedure RadioGroup_SetParentShowHint(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.ParentShowHint := AValue;
end;
function RadioGroup_GetPopupMenu(AObj: TRadioGroup): TPopupMenu; cdecl;
begin
Result := AObj.PopupMenu;
end;
procedure RadioGroup_SetPopupMenu(AObj: TRadioGroup; AValue: TPopupMenu); cdecl;
begin
AObj.PopupMenu := AValue;
end;
function RadioGroup_GetShowHint(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.ShowHint;
end;
procedure RadioGroup_SetShowHint(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.ShowHint := AValue;
end;
function RadioGroup_GetTabOrder(AObj: TRadioGroup): TTabOrder; cdecl;
begin
Result := AObj.TabOrder;
end;
procedure RadioGroup_SetTabOrder(AObj: TRadioGroup; AValue: TTabOrder); cdecl;
begin
AObj.TabOrder := AValue;
end;
function RadioGroup_GetTabStop(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.TabStop;
end;
procedure RadioGroup_SetTabStop(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.TabStop := AValue;
end;
function RadioGroup_GetVisible(AObj: TRadioGroup): LongBool; cdecl;
begin
Result := AObj.Visible;
end;
procedure RadioGroup_SetVisible(AObj: TRadioGroup; AValue: LongBool); cdecl;
begin
AObj.Visible := AValue;
end;
//function RadioGroup_GetStyleElements(AObj: TRadioGroup): TStyleElements; cdecl;
//begin
// Result := AObj.StyleElements;
//end;
//
//procedure RadioGroup_SetStyleElements(AObj: TRadioGroup; AValue: TStyleElements); cdecl;
//begin
// AObj.StyleElements := AValue;
//end;
//
//function RadioGroup_GetWordWrap(AObj: TRadioGroup): LongBool; cdecl;
//begin
// Result := AObj.WordWrap;
//end;
//
//procedure RadioGroup_SetWordWrap(AObj: TRadioGroup; AValue: LongBool); cdecl;
//begin
// AObj.WordWrap := AValue;
//end;
procedure RadioGroup_SetOnClick(AObj: TRadioGroup; AEventId: NativeUInt); stdcall;
begin
if AEventId = 0 then
begin
AObj.OnClick := nil;
TEventClass.Remove(AObj, geClick);
Exit;
end;
AObj.OnClick := TEventClass.OnClick;
TEventClass.Add(AObj, geClick, AEventId);
end;
procedure RadioGroup_SetOnEnter(AObj: TRadioGroup; AEventId: NativeUInt); stdcall;
begin
if AEventId = 0 then
begin
AObj.OnEnter := nil;
TEventClass.Remove(AObj, geEnter);
Exit;
end;
AObj.OnEnter := TEventClass.OnEnter;
TEventClass.Add(AObj, geEnter, AEventId);
end;
procedure RadioGroup_SetOnExit(AObj: TRadioGroup; AEventId: NativeUInt); stdcall;
begin
if AEventId = 0 then
begin
AObj.OnExit := nil;
TEventClass.Remove(AObj, geExit);
Exit;
end;
AObj.OnExit := TEventClass.OnExit;
TEventClass.Add(AObj, geExit, AEventId);
end;
function RadioGroup_GetBrush(AObj: TRadioGroup): TBrush; cdecl;
begin
Result := AObj.Brush;
end;
function RadioGroup_GetControlCount(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.ControlCount;
end;
function RadioGroup_GetHandle(AObj: TRadioGroup): HWND; cdecl;
begin
Result := AObj.Handle;
end;
function RadioGroup_GetParentWindow(AObj: TRadioGroup): HWND; cdecl;
begin
Result := AObj.ParentWindow;
end;
procedure RadioGroup_SetParentWindow(AObj: TRadioGroup; AValue: HWND); cdecl;
begin
AObj.ParentWindow := AValue;
end;
function RadioGroup_GetAction(AObj: TRadioGroup): TBasicAction; cdecl;
begin
Result := AObj.Action;
end;
procedure RadioGroup_SetAction(AObj: TRadioGroup; AValue: TBasicAction); cdecl;
begin
AObj.Action := AValue;
end;
procedure RadioGroup_GetBoundsRect(AObj: TRadioGroup; var Result: TRect); cdecl;
begin
Result := AObj.BoundsRect;
end;
procedure RadioGroup_SetBoundsRect(AObj: TRadioGroup; var AValue: TRect); cdecl;
begin
AObj.BoundsRect := AValue;
end;
function RadioGroup_GetClientHeight(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.ClientHeight;
end;
procedure RadioGroup_SetClientHeight(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.ClientHeight := AValue;
end;
procedure RadioGroup_GetClientRect(AObj: TRadioGroup; var Result: TRect); cdecl;
begin
Result := AObj.ClientRect;
end;
function RadioGroup_GetClientWidth(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.ClientWidth;
end;
procedure RadioGroup_SetClientWidth(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.ClientWidth := AValue;
end;
//function RadioGroup_GetExplicitLeft(AObj: TRadioGroup): Integer; cdecl;
//begin
// Result := AObj.ExplicitLeft;
//end;
//
//function RadioGroup_GetExplicitTop(AObj: TRadioGroup): Integer; cdecl;
//begin
// Result := AObj.ExplicitTop;
//end;
//
//function RadioGroup_GetExplicitWidth(AObj: TRadioGroup): Integer; cdecl;
//begin
// Result := AObj.ExplicitWidth;
//end;
//
//function RadioGroup_GetExplicitHeight(AObj: TRadioGroup): Integer; cdecl;
//begin
// Result := AObj.ExplicitHeight;
//end;
function RadioGroup_GetParent(AObj: TRadioGroup): TWinControl; cdecl;
begin
Result := AObj.Parent;
end;
procedure RadioGroup_SetParent(AObj: TRadioGroup; AValue: TWinControl); cdecl;
begin
AObj.Parent := AValue;
end;
//function RadioGroup_GetAlignWithMargins(AObj: TRadioGroup): LongBool; cdecl;
//begin
// Result := AObj.AlignWithMargins;
//end;
//
//procedure RadioGroup_SetAlignWithMargins(AObj: TRadioGroup; AValue: LongBool); cdecl;
//begin
// AObj.AlignWithMargins := AValue;
//end;
function RadioGroup_GetLeft(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.Left;
end;
procedure RadioGroup_SetLeft(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.Left := AValue;
end;
function RadioGroup_GetTop(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.Top;
end;
procedure RadioGroup_SetTop(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.Top := AValue;
end;
function RadioGroup_GetWidth(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.Width;
end;
procedure RadioGroup_SetWidth(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.Width := AValue;
end;
function RadioGroup_GetHeight(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.Height;
end;
procedure RadioGroup_SetHeight(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.Height := AValue;
end;
function RadioGroup_GetCursor(AObj: TRadioGroup): TCursor; cdecl;
begin
Result := AObj.Cursor;
end;
procedure RadioGroup_SetCursor(AObj: TRadioGroup; AValue: TCursor); cdecl;
begin
AObj.Cursor := AValue;
end;
function RadioGroup_GetHint(AObj: TRadioGroup): PWideChar; cdecl;
begin
Result := PWideChar(AObj.Hint);
end;
procedure RadioGroup_SetHint(AObj: TRadioGroup; AValue: PWideChar); cdecl;
begin
AObj.Hint := AValue;
end;
//function RadioGroup_GetMargins(AObj: TRadioGroup): TMargins; cdecl;
//begin
// Result := AObj.Margins;
//end;
//
//procedure RadioGroup_SetMargins(AObj: TRadioGroup; AValue: TMargins); cdecl;
//begin
// AObj.Margins := AValue;
//end;
function RadioGroup_GetComponentCount(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.ComponentCount;
end;
function RadioGroup_GetComponentIndex(AObj: TRadioGroup): Integer; cdecl;
begin
Result := AObj.ComponentIndex;
end;
procedure RadioGroup_SetComponentIndex(AObj: TRadioGroup; AValue: Integer); cdecl;
begin
AObj.ComponentIndex := AValue;
end;
function RadioGroup_GetOwner(AObj: TRadioGroup): TComponent; cdecl;
begin
Result := AObj.Owner;
end;
function RadioGroup_GetName(AObj: TRadioGroup): PWideChar; cdecl;
begin
Result := PWideChar(AObj.Name);
end;
procedure RadioGroup_SetName(AObj: TRadioGroup; AValue: PWideChar); cdecl;
begin
AObj.Name := AValue;
end;
function RadioGroup_GetTag(AObj: TRadioGroup): NativeInt; cdecl;
begin
Result := AObj.Tag;
end;
procedure RadioGroup_SetTag(AObj: TRadioGroup; AValue: NativeInt); cdecl;
begin
AObj.Tag := AValue;
end;
//function RadioGroup_GetButtons(AObj: TRadioGroup; Index: Integer): TRadioButton; cdecl;
//begin
// Result := AObj.Buttons[Index];
//end;
function RadioGroup_GetControls(AObj: TRadioGroup; Index: Integer): TControl; cdecl;
begin
Result := AObj.Controls[Index];
end;
function RadioGroup_GetComponents(AObj: TRadioGroup; AIndex: Integer): TComponent; cdecl;
begin
Result := AObj.Components[AIndex];
end;
exports
RadioGroup_Create {$IFNDEF MSWINDOWS}name '_RadioGroup_Create'{$ENDIF},
RadioGroup_Free {$IFNDEF MSWINDOWS}name '_RadioGroup_Free'{$ENDIF},
RadioGroup_FlipChildren {$IFNDEF MSWINDOWS}name '_RadioGroup_FlipChildren'{$ENDIF},
RadioGroup_CanFocus {$IFNDEF MSWINDOWS}name '_RadioGroup_CanFocus'{$ENDIF},
RadioGroup_Focused {$IFNDEF MSWINDOWS}name '_RadioGroup_Focused'{$ENDIF},
RadioGroup_HandleAllocated {$IFNDEF MSWINDOWS}name '_RadioGroup_HandleAllocated'{$ENDIF},
RadioGroup_Invalidate {$IFNDEF MSWINDOWS}name '_RadioGroup_Invalidate'{$ENDIF},
RadioGroup_Realign {$IFNDEF MSWINDOWS}name '_RadioGroup_Realign'{$ENDIF},
RadioGroup_Repaint {$IFNDEF MSWINDOWS}name '_RadioGroup_Repaint'{$ENDIF},
RadioGroup_ScaleBy {$IFNDEF MSWINDOWS}name '_RadioGroup_ScaleBy'{$ENDIF},
RadioGroup_SetBounds {$IFNDEF MSWINDOWS}name '_RadioGroup_SetBounds'{$ENDIF},
RadioGroup_SetFocus {$IFNDEF MSWINDOWS}name '_RadioGroup_SetFocus'{$ENDIF},
RadioGroup_Update {$IFNDEF MSWINDOWS}name '_RadioGroup_Update'{$ENDIF},
RadioGroup_BringToFront {$IFNDEF MSWINDOWS}name '_RadioGroup_BringToFront'{$ENDIF},
RadioGroup_HasParent {$IFNDEF MSWINDOWS}name '_RadioGroup_HasParent'{$ENDIF},
RadioGroup_Hide {$IFNDEF MSWINDOWS}name '_RadioGroup_Hide'{$ENDIF},
RadioGroup_Perform {$IFNDEF MSWINDOWS}name '_RadioGroup_Perform'{$ENDIF},
RadioGroup_Refresh {$IFNDEF MSWINDOWS}name '_RadioGroup_Refresh'{$ENDIF},
RadioGroup_SendToBack {$IFNDEF MSWINDOWS}name '_RadioGroup_SendToBack'{$ENDIF},
RadioGroup_Show {$IFNDEF MSWINDOWS}name '_RadioGroup_Show'{$ENDIF},
RadioGroup_GetTextBuf {$IFNDEF MSWINDOWS}name '_RadioGroup_GetTextBuf'{$ENDIF},
RadioGroup_FindComponent {$IFNDEF MSWINDOWS}name '_RadioGroup_FindComponent'{$ENDIF},
RadioGroup_GetNamePath {$IFNDEF MSWINDOWS}name '_RadioGroup_GetNamePath'{$ENDIF},
RadioGroup_Assign {$IFNDEF MSWINDOWS}name '_RadioGroup_Assign'{$ENDIF},
RadioGroup_ClassName {$IFNDEF MSWINDOWS}name '_RadioGroup_ClassName'{$ENDIF},
RadioGroup_Equals {$IFNDEF MSWINDOWS}name '_RadioGroup_Equals'{$ENDIF},
RadioGroup_GetHashCode {$IFNDEF MSWINDOWS}name '_RadioGroup_GetHashCode'{$ENDIF},
RadioGroup_ToString {$IFNDEF MSWINDOWS}name '_RadioGroup_ToString'{$ENDIF},
RadioGroup_GetAlign {$IFNDEF MSWINDOWS}name '_RadioGroup_GetAlign'{$ENDIF},
RadioGroup_SetAlign {$IFNDEF MSWINDOWS}name '_RadioGroup_SetAlign'{$ENDIF},
RadioGroup_GetAnchors {$IFNDEF MSWINDOWS}name '_RadioGroup_GetAnchors'{$ENDIF},
RadioGroup_SetAnchors {$IFNDEF MSWINDOWS}name '_RadioGroup_SetAnchors'{$ENDIF},
RadioGroup_GetBiDiMode {$IFNDEF MSWINDOWS}name '_RadioGroup_GetBiDiMode'{$ENDIF},
RadioGroup_SetBiDiMode {$IFNDEF MSWINDOWS}name '_RadioGroup_SetBiDiMode'{$ENDIF},
RadioGroup_GetCaption {$IFNDEF MSWINDOWS}name '_RadioGroup_GetCaption'{$ENDIF},
RadioGroup_SetCaption {$IFNDEF MSWINDOWS}name '_RadioGroup_SetCaption'{$ENDIF},
RadioGroup_GetColor {$IFNDEF MSWINDOWS}name '_RadioGroup_GetColor'{$ENDIF},
RadioGroup_SetColor {$IFNDEF MSWINDOWS}name '_RadioGroup_SetColor'{$ENDIF},
RadioGroup_GetColumns {$IFNDEF MSWINDOWS}name '_RadioGroup_GetColumns'{$ENDIF},
RadioGroup_SetColumns {$IFNDEF MSWINDOWS}name '_RadioGroup_SetColumns'{$ENDIF},
RadioGroup_GetDoubleBuffered {$IFNDEF MSWINDOWS}name '_RadioGroup_GetDoubleBuffered'{$ENDIF},
RadioGroup_SetDoubleBuffered {$IFNDEF MSWINDOWS}name '_RadioGroup_SetDoubleBuffered'{$ENDIF},
RadioGroup_GetEnabled {$IFNDEF MSWINDOWS}name '_RadioGroup_GetEnabled'{$ENDIF},
RadioGroup_SetEnabled {$IFNDEF MSWINDOWS}name '_RadioGroup_SetEnabled'{$ENDIF},
RadioGroup_GetFont {$IFNDEF MSWINDOWS}name '_RadioGroup_GetFont'{$ENDIF},
RadioGroup_SetFont {$IFNDEF MSWINDOWS}name '_RadioGroup_SetFont'{$ENDIF},
RadioGroup_GetItemIndex {$IFNDEF MSWINDOWS}name '_RadioGroup_GetItemIndex'{$ENDIF},
RadioGroup_SetItemIndex {$IFNDEF MSWINDOWS}name '_RadioGroup_SetItemIndex'{$ENDIF},
RadioGroup_GetItems {$IFNDEF MSWINDOWS}name '_RadioGroup_GetItems'{$ENDIF},
RadioGroup_SetItems {$IFNDEF MSWINDOWS}name '_RadioGroup_SetItems'{$ENDIF},
//RadioGroup_GetParentBackground {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentBackground'{$ENDIF},
//RadioGroup_SetParentBackground {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentBackground'{$ENDIF},
RadioGroup_GetParentColor {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentColor'{$ENDIF},
RadioGroup_SetParentColor {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentColor'{$ENDIF},
//RadioGroup_GetParentCtl3D {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentCtl3D'{$ENDIF},
//RadioGroup_SetParentCtl3D {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentCtl3D'{$ENDIF},
//RadioGroup_GetParentDoubleBuffered {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentDoubleBuffered'{$ENDIF},
//RadioGroup_SetParentDoubleBuffered {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentDoubleBuffered'{$ENDIF},
RadioGroup_GetParentFont {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentFont'{$ENDIF},
RadioGroup_SetParentFont {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentFont'{$ENDIF},
RadioGroup_GetParentShowHint {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentShowHint'{$ENDIF},
RadioGroup_SetParentShowHint {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentShowHint'{$ENDIF},
RadioGroup_GetPopupMenu {$IFNDEF MSWINDOWS}name '_RadioGroup_GetPopupMenu'{$ENDIF},
RadioGroup_SetPopupMenu {$IFNDEF MSWINDOWS}name '_RadioGroup_SetPopupMenu'{$ENDIF},
RadioGroup_GetShowHint {$IFNDEF MSWINDOWS}name '_RadioGroup_GetShowHint'{$ENDIF},
RadioGroup_SetShowHint {$IFNDEF MSWINDOWS}name '_RadioGroup_SetShowHint'{$ENDIF},
RadioGroup_GetTabOrder {$IFNDEF MSWINDOWS}name '_RadioGroup_GetTabOrder'{$ENDIF},
RadioGroup_SetTabOrder {$IFNDEF MSWINDOWS}name '_RadioGroup_SetTabOrder'{$ENDIF},
RadioGroup_GetTabStop {$IFNDEF MSWINDOWS}name '_RadioGroup_GetTabStop'{$ENDIF},
RadioGroup_SetTabStop {$IFNDEF MSWINDOWS}name '_RadioGroup_SetTabStop'{$ENDIF},
RadioGroup_GetVisible {$IFNDEF MSWINDOWS}name '_RadioGroup_GetVisible'{$ENDIF},
RadioGroup_SetVisible {$IFNDEF MSWINDOWS}name '_RadioGroup_SetVisible'{$ENDIF},
//RadioGroup_GetStyleElements {$IFNDEF MSWINDOWS}name '_RadioGroup_GetStyleElements'{$ENDIF},
//RadioGroup_SetStyleElements {$IFNDEF MSWINDOWS}name '_RadioGroup_SetStyleElements'{$ENDIF},
//RadioGroup_GetWordWrap {$IFNDEF MSWINDOWS}name '_RadioGroup_GetWordWrap'{$ENDIF},
//RadioGroup_SetWordWrap {$IFNDEF MSWINDOWS}name '_RadioGroup_SetWordWrap'{$ENDIF},
RadioGroup_SetOnClick {$IFNDEF MSWINDOWS}name '_RadioGroup_SetOnClick'{$ENDIF},
RadioGroup_SetOnEnter {$IFNDEF MSWINDOWS}name '_RadioGroup_SetOnEnter'{$ENDIF},
RadioGroup_SetOnExit {$IFNDEF MSWINDOWS}name '_RadioGroup_SetOnExit'{$ENDIF},
RadioGroup_GetBrush {$IFNDEF MSWINDOWS}name '_RadioGroup_GetBrush'{$ENDIF},
RadioGroup_GetControlCount {$IFNDEF MSWINDOWS}name '_RadioGroup_GetControlCount'{$ENDIF},
RadioGroup_GetHandle {$IFNDEF MSWINDOWS}name '_RadioGroup_GetHandle'{$ENDIF},
RadioGroup_GetParentWindow {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParentWindow'{$ENDIF},
RadioGroup_SetParentWindow {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParentWindow'{$ENDIF},
RadioGroup_GetAction {$IFNDEF MSWINDOWS}name '_RadioGroup_GetAction'{$ENDIF},
RadioGroup_SetAction {$IFNDEF MSWINDOWS}name '_RadioGroup_SetAction'{$ENDIF},
RadioGroup_GetBoundsRect {$IFNDEF MSWINDOWS}name '_RadioGroup_GetBoundsRect'{$ENDIF},
RadioGroup_SetBoundsRect {$IFNDEF MSWINDOWS}name '_RadioGroup_SetBoundsRect'{$ENDIF},
RadioGroup_GetClientHeight {$IFNDEF MSWINDOWS}name '_RadioGroup_GetClientHeight'{$ENDIF},
RadioGroup_SetClientHeight {$IFNDEF MSWINDOWS}name '_RadioGroup_SetClientHeight'{$ENDIF},
RadioGroup_GetClientRect {$IFNDEF MSWINDOWS}name '_RadioGroup_GetClientRect'{$ENDIF},
RadioGroup_GetClientWidth {$IFNDEF MSWINDOWS}name '_RadioGroup_GetClientWidth'{$ENDIF},
RadioGroup_SetClientWidth {$IFNDEF MSWINDOWS}name '_RadioGroup_SetClientWidth'{$ENDIF},
//RadioGroup_GetExplicitLeft {$IFNDEF MSWINDOWS}name '_RadioGroup_GetExplicitLeft'{$ENDIF},
//RadioGroup_GetExplicitTop {$IFNDEF MSWINDOWS}name '_RadioGroup_GetExplicitTop'{$ENDIF},
//RadioGroup_GetExplicitWidth {$IFNDEF MSWINDOWS}name '_RadioGroup_GetExplicitWidth'{$ENDIF},
//RadioGroup_GetExplicitHeight {$IFNDEF MSWINDOWS}name '_RadioGroup_GetExplicitHeight'{$ENDIF},
RadioGroup_GetParent {$IFNDEF MSWINDOWS}name '_RadioGroup_GetParent'{$ENDIF},
RadioGroup_SetParent {$IFNDEF MSWINDOWS}name '_RadioGroup_SetParent'{$ENDIF},
//RadioGroup_GetAlignWithMargins {$IFNDEF MSWINDOWS}name '_RadioGroup_GetAlignWithMargins'{$ENDIF},
//RadioGroup_SetAlignWithMargins {$IFNDEF MSWINDOWS}name '_RadioGroup_SetAlignWithMargins'{$ENDIF},
RadioGroup_GetLeft {$IFNDEF MSWINDOWS}name '_RadioGroup_GetLeft'{$ENDIF},
RadioGroup_SetLeft {$IFNDEF MSWINDOWS}name '_RadioGroup_SetLeft'{$ENDIF},
RadioGroup_GetTop {$IFNDEF MSWINDOWS}name '_RadioGroup_GetTop'{$ENDIF},
RadioGroup_SetTop {$IFNDEF MSWINDOWS}name '_RadioGroup_SetTop'{$ENDIF},
RadioGroup_GetWidth {$IFNDEF MSWINDOWS}name '_RadioGroup_GetWidth'{$ENDIF},
RadioGroup_SetWidth {$IFNDEF MSWINDOWS}name '_RadioGroup_SetWidth'{$ENDIF},
RadioGroup_GetHeight {$IFNDEF MSWINDOWS}name '_RadioGroup_GetHeight'{$ENDIF},
RadioGroup_SetHeight {$IFNDEF MSWINDOWS}name '_RadioGroup_SetHeight'{$ENDIF},
RadioGroup_GetCursor {$IFNDEF MSWINDOWS}name '_RadioGroup_GetCursor'{$ENDIF},
RadioGroup_SetCursor {$IFNDEF MSWINDOWS}name '_RadioGroup_SetCursor'{$ENDIF},
RadioGroup_GetHint {$IFNDEF MSWINDOWS}name '_RadioGroup_GetHint'{$ENDIF},
RadioGroup_SetHint {$IFNDEF MSWINDOWS}name '_RadioGroup_SetHint'{$ENDIF},
//RadioGroup_GetMargins {$IFNDEF MSWINDOWS}name '_RadioGroup_GetMargins'{$ENDIF},
//RadioGroup_SetMargins {$IFNDEF MSWINDOWS}name '_RadioGroup_SetMargins'{$ENDIF},
RadioGroup_GetComponentCount {$IFNDEF MSWINDOWS}name '_RadioGroup_GetComponentCount'{$ENDIF},
RadioGroup_GetComponentIndex {$IFNDEF MSWINDOWS}name '_RadioGroup_GetComponentIndex'{$ENDIF},
RadioGroup_SetComponentIndex {$IFNDEF MSWINDOWS}name '_RadioGroup_SetComponentIndex'{$ENDIF},
RadioGroup_GetOwner {$IFNDEF MSWINDOWS}name '_RadioGroup_GetOwner'{$ENDIF},
RadioGroup_GetName {$IFNDEF MSWINDOWS}name '_RadioGroup_GetName'{$ENDIF},
RadioGroup_SetName {$IFNDEF MSWINDOWS}name '_RadioGroup_SetName'{$ENDIF},
RadioGroup_GetTag {$IFNDEF MSWINDOWS}name '_RadioGroup_GetTag'{$ENDIF},
RadioGroup_SetTag {$IFNDEF MSWINDOWS}name '_RadioGroup_SetTag'{$ENDIF},
//RadioGroup_GetButtons {$IFNDEF MSWINDOWS}name '_RadioGroup_GetButtons'{$ENDIF},
RadioGroup_GetControls {$IFNDEF MSWINDOWS}name '_RadioGroup_GetControls'{$ENDIF},
RadioGroup_GetComponents {$IFNDEF MSWINDOWS}name '_RadioGroup_GetComponents'{$ENDIF};