mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
33 lines
471 B
ObjectPascal
33 lines
471 B
ObjectPascal
unit dmCommonData;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Dialogs;
|
|
|
|
type
|
|
|
|
{ TdmComData }
|
|
|
|
TdmComData = class(TDataModule)
|
|
ImageList: TImageList;
|
|
OpenDialog: TOpenDialog;
|
|
SaveDialog: TSaveDialog;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
dmComData: TdmComData;
|
|
|
|
implementation
|
|
|
|
initialization
|
|
{$I dmcommondata.lrs}
|
|
|
|
end.
|
|
|