/packages/cocoaint/src/webkit/WebDownload.inc

https://github.com/slibre/freepascal · Pascal · 56 lines · 11 code · 15 blank · 30 comment · 0 complexity · de7eb15c4559313548b9347a3c2d61ba MD5 · raw file

  1. { Parsed from Webkit.framework WebDownload.h }
  2. {$ifdef TYPES}
  3. {$ifndef WEBDOWNLOAD_PAS_T}
  4. {$define WEBDOWNLOAD_PAS_T}
  5. {$endif}
  6. {$endif}
  7. {$ifdef RECORDS}
  8. {$ifndef WEBDOWNLOAD_PAS_R}
  9. {$define WEBDOWNLOAD_PAS_R}
  10. {$endif}
  11. {$endif}
  12. {$ifdef FUNCTIONS}
  13. {$ifndef WEBDOWNLOAD_PAS_F}
  14. {$define WEBDOWNLOAD_PAS_F}
  15. {$endif}
  16. {$endif}
  17. {$ifdef EXTERNAL_SYMBOLS}
  18. {$ifndef WEBDOWNLOAD_PAS_S}
  19. {$define WEBDOWNLOAD_PAS_S}
  20. {$endif}
  21. {$endif}
  22. {$ifdef FORWARD}
  23. WebDownload = objcclass;
  24. WebDownloadPointer = ^WebDownload;
  25. WebDownloadPtr = WebDownloadPointer;
  26. {$endif}
  27. {$ifdef CLASSES}
  28. {$ifndef WEBDOWNLOAD_PAS_C}
  29. {$define WEBDOWNLOAD_PAS_C}
  30. { WebDownload }
  31. WebDownload = objcclass external (NSURLDownload)
  32. private
  33. _webInternal: WebDownloadInternal;
  34. public
  35. end;
  36. { WebDownloadDelegateCategory }
  37. WebDownloadDelegateCategory = objccategory external (NSObject)
  38. function downloadWindowForAuthenticationSheet(download: WebDownload): NSWindowPtr; message 'downloadWindowForAuthenticationSheet:';
  39. end;
  40. {$endif}
  41. {$endif}