mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
17 lines
153 B
ObjectPascal
17 lines
153 B
ObjectPascal
unit uFilePanelSelect;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
TFilePanelSelect = (fpLeft, fpRight);
|
|
|
|
implementation
|
|
|
|
end.
|
|
|