mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 16:19:56 +02:00

o note that CoreData and QuartzCore are now part of CocoaAll due to dependencies git-svn-id: trunk@42500 -
23 lines
597 B
PHP
23 lines
597 B
PHP
{ Parsed from WebKit.framework DOMMediaList.h }
|
|
|
|
|
|
{$ifdef TYPES}
|
|
type
|
|
DOMMediaListPtr = ^DOMMediaList;
|
|
{$endif}
|
|
|
|
{$ifdef CLASSES}
|
|
|
|
type
|
|
DOMMediaList = objcclass external (DOMObject)
|
|
public
|
|
procedure setMediaText(newValue: NSString); message 'setMediaText:';
|
|
function mediaText: NSString; message 'mediaText';
|
|
function length: cuint; message 'length';
|
|
function item (index: cuint): NSString; message 'item:';
|
|
procedure deleteMedium (oldMedium: NSString); message 'deleteMedium:';
|
|
procedure appendMedium (newMedium: NSString); message 'appendMedium:';
|
|
end;
|
|
{$endif}
|
|
|