initial commit
[rofl0r-KOL.git] / units / flash / KOLFlash.pas
blobc7dc9e4a31e88a97f29b746ffcb8891ecb56cb7f
1 //////////////////////////////////////////////////
2 // //
3 // //
4 // TKOLFlash v1.0 //
5 // //
6 // Author: Dimaxx (dimaxx@atnet.ru) //
7 // //
8 // //
9 //////////////////////////////////////////////////
10 unit KOLFlash;
12 interface
14 uses KOL, Flash_TLB;
16 type
17 TKOLFlash = PShockwaveFlash;
18 PKOLFlash = PShockwaveFlash;
20 function NewKOLFlash(AOwner: PControl): PKOLFlash;
22 implementation
24 function NewKOLFlash;
25 begin
26 New(Result,CreateParented(AOwner));
27 end;
29 end.