mirror of
https://github.com/moparisthebest/Simba
synced 2025-02-18 00:00:23 -05:00
33 lines
411 B
ObjectPascal
33 lines
411 B
ObjectPascal
unit bitmapconv;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
StdCtrls;
|
|
|
|
type
|
|
|
|
{ TBitmapConvForm }
|
|
|
|
TBitmapConvForm = class(TForm)
|
|
Button1: TButton;
|
|
CheckBox1: TCheckBox;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
BitmapConvForm: TBitmapConvForm;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
end.
|
|
|