blob: 9a5b362d443ce322b0db4de5c39760e0dd2b80c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{ Parsed from Quartzcore.framework CIPlugIn.h }
{$ifdef TYPES}
{$ifndef CIPLUGIN_PAS_T}
{$define CIPLUGIN_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef CIPLUGIN_PAS_R}
{$define CIPLUGIN_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef CIPLUGIN_PAS_F}
{$define CIPLUGIN_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef CIPLUGIN_PAS_S}
{$define CIPLUGIN_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
CIPlugIn = objcclass;
CIPlugInPointer = ^CIPlugIn;
CIPlugInPtr = CIPlugInPointer;
{$endif}
{$ifdef CLASSES}
{$ifndef CIPLUGIN_PAS_C}
{$define CIPLUGIN_PAS_C}
{ CIPlugIn }
CIPlugIn = objcclass external (NSObject)
private
_priv: array[0..(8)-1] of Pointer;
public
class procedure loadAllPlugIns; message 'loadAllPlugIns';
class procedure loadNonExecutablePlugIns; message 'loadNonExecutablePlugIns';
class procedure loadPlugIn_allowNonExecutable(url: NSURL; allowNonExecutable: Boolean); message 'loadPlugIn:allowNonExecutable:';
end;
{$endif}
{$endif}
|