blob: fee8cbfd5309390ef7656fe58f221eff7ff249ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ Parsed from PDFKit.framework PDFActionURL.h }
{$ifdef TYPES}
type
PDFActionURLPtr = ^PDFActionURL;
{$endif}
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
{$ifdef CLASSES}
type
PDFActionURL = objcclass external (PDFAction, NSCopyingProtocol)
private
_pdfPriv2: PDFActionURLPrivateVars;
public
function initWithURL (url: NSURL): id; message 'initWithURL:';
function URL: NSURL; message 'URL';
procedure setURL (url_: NSURL); message 'setURL:';
end;
{$endif}
{$endif}
|