CIPlugIn.inc 1013 B

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