From 2359462c96c3e0a0b14aef8f8b8da14054688a4a Mon Sep 17 00:00:00 2001 From: mgaertner Date: Sat, 20 Apr 2013 00:02:40 +0000 Subject: [PATCH] bluetooth: fixed bluetooth compilation git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2730 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- examples/bluetooth/wiimotetools.pas | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/bluetooth/wiimotetools.pas b/examples/bluetooth/wiimotetools.pas index aea508060..d009b450a 100644 --- a/examples/bluetooth/wiimotetools.pas +++ b/examples/bluetooth/wiimotetools.pas @@ -299,15 +299,6 @@ type procedure HandleEvents; procedure HandleRead; public - constructor Create; - destructor Destroy; override; - procedure SetLEDs(const AValue: integer); - function Connect: boolean; - procedure Disconnect; - procedure EnableHandshake; - function RealizeReportType: boolean; - procedure RealizeIR; - WiiMotes: TWiiMotes; ID: integer; Name: string; @@ -332,6 +323,15 @@ type Accel: TAccelVector; // current accelerator state AccelCalibration: TAccelCalibration; Dots: array[0..3] of TWiiMoteDot; + + constructor Create; + destructor Destroy; override; + procedure SetLEDs(const AValue: integer); + function Connect: boolean; + procedure Disconnect; + procedure EnableHandshake; + function RealizeReportType: boolean; + procedure RealizeIR; end; { TWiiMotes }