mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
30 lines
369 B
ObjectPascal
30 lines
369 B
ObjectPascal
unit dmCmd;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Dialogs;
|
|
|
|
type
|
|
TdmCommander = class(TDataModule)
|
|
imgList: TImageList;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
dmCommander: TdmCommander;
|
|
|
|
implementation
|
|
|
|
{ TdmCommander }
|
|
|
|
initialization
|
|
{$I dmCmd.lrs}
|
|
|
|
end.
|
|
|