mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 19:48:21 +02:00
21 lines
235 B
ObjectPascal
21 lines
235 B
ObjectPascal
{ %TARGET=win32 }
|
|
unit tw1820;
|
|
interface
|
|
|
|
{$mode Delphi}
|
|
|
|
Uses Windows;
|
|
|
|
type
|
|
IEnumWorkItems = interface (IUnknown)
|
|
['{148BD528-A2AB-11CE-B11F-00AA00530503}']
|
|
end;
|
|
|
|
|
|
const
|
|
IEnumTasks = IEnumWorkItems;
|
|
|
|
implementation
|
|
|
|
end.
|