Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / packages / cocoaint / src / foundation / NSFileHandle.inc
Size: Mime:
{ Parsed from Foundation.framework NSFileHandle.h }

{$ifdef TYPES}
{$ifndef NSFILEHANDLE_PAS_T}
{$define NSFILEHANDLE_PAS_T}

{$endif}
{$endif}

{$ifdef RECORDS}
{$ifndef NSFILEHANDLE_PAS_R}
{$define NSFILEHANDLE_PAS_R}

{$endif}
{$endif}

{$ifdef FUNCTIONS}
{$ifndef NSFILEHANDLE_PAS_F}
{$define NSFILEHANDLE_PAS_F}

{$endif}
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
{$ifndef NSFILEHANDLE_PAS_S}
{$define NSFILEHANDLE_PAS_S}

{ External string constants }
var
  NSFileHandleOperationException: NSString; cvar; external;
  NSFileHandleReadCompletionNotification: NSString; cvar; external;
  NSFileHandleReadToEndOfFileCompletionNotification: NSString; cvar; external;
  NSFileHandleConnectionAcceptedNotification: NSString; cvar; external;
  NSFileHandleDataAvailableNotification: NSString; cvar; external;
  NSFileHandleNotificationDataItem: NSString; cvar; external;
  NSFileHandleNotificationFileHandleItem: NSString; cvar; external;
  NSFileHandleNotificationMonitorModes: NSString; cvar; external;

{$endif}
{$endif}

{$ifdef FORWARD}
  NSFileHandle = objcclass;
  NSFileHandlePointer = ^NSFileHandle;
  NSFileHandlePtr = NSFileHandlePointer;
  NSPipe = objcclass;
  NSPipePointer = ^NSPipe;
  NSPipePtr = NSPipePointer;

{$endif}

{$ifdef CLASSES}
{$ifndef NSFILEHANDLE_PAS_C}
{$define NSFILEHANDLE_PAS_C}

{ NSFileHandle }
  NSFileHandle = objcclass external (NSObject)
    
  public
    function availableData: NSData; message 'availableData';
    function readDataToEndOfFile: NSData; message 'readDataToEndOfFile';
    function readDataOfLength(length: NSUInteger): NSData; message 'readDataOfLength:';
    procedure writeData(data: NSData); message 'writeData:';
    function offsetInFile: culonglong; message 'offsetInFile';
    function seekToEndOfFile: culonglong; message 'seekToEndOfFile';
    procedure seekToFileOffset(offset: culonglong); message 'seekToFileOffset:';
    procedure truncateFileAtOffset(offset: culonglong); message 'truncateFileAtOffset:';
    procedure synchronizeFile; message 'synchronizeFile';
    procedure closeFile; message 'closeFile';
  end;

{ NSPipe }
  NSPipe = objcclass external (NSObject)
    
  public
    function fileHandleForReading: NSFileHandle; message 'fileHandleForReading';
    function fileHandleForWriting: NSFileHandle; message 'fileHandleForWriting';
    function init: id; message 'init';
    class function pipe: id; message 'pipe';
  end;

{ NSFileHandleCreationCategory }
  NSFileHandleCreationCategory = objccategory external (NSFileHandle)
    class function fileHandleWithStandardInput: id; message 'fileHandleWithStandardInput';
    class function fileHandleWithStandardOutput: id; message 'fileHandleWithStandardOutput';
    class function fileHandleWithStandardError: id; message 'fileHandleWithStandardError';
    class function fileHandleWithNullDevice: id; message 'fileHandleWithNullDevice';
    class function fileHandleForReadingAtPath(path: NSString): id; message 'fileHandleForReadingAtPath:';
    class function fileHandleForWritingAtPath(path: NSString): id; message 'fileHandleForWritingAtPath:';
    class function fileHandleForUpdatingAtPath(path: NSString): id; message 'fileHandleForUpdatingAtPath:';
    class function fileHandleForReadingFromURL_error(url: NSURL; error: NSErrorPointer): id; message 'fileHandleForReadingFromURL:error:';
    class function fileHandleForWritingToURL_error(url: NSURL; error: NSErrorPointer): id; message 'fileHandleForWritingToURL:error:';
    class function fileHandleForUpdatingURL_error(url: NSURL; error: NSErrorPointer): id; message 'fileHandleForUpdatingURL:error:';
  end;

{ NSFileHandleAsynchronousAccessCategory }
  NSFileHandleAsynchronousAccessCategory = objccategory external (NSFileHandle)
    procedure readInBackgroundAndNotifyForModes(modes: NSArray); message 'readInBackgroundAndNotifyForModes:';
    procedure readInBackgroundAndNotify; message 'readInBackgroundAndNotify';
    procedure readToEndOfFileInBackgroundAndNotifyForModes(modes: NSArray); message 'readToEndOfFileInBackgroundAndNotifyForModes:';
    procedure readToEndOfFileInBackgroundAndNotify; message 'readToEndOfFileInBackgroundAndNotify';
    procedure acceptConnectionInBackgroundAndNotifyForModes(modes: NSArray); message 'acceptConnectionInBackgroundAndNotifyForModes:';
    procedure acceptConnectionInBackgroundAndNotify; message 'acceptConnectionInBackgroundAndNotify';
    procedure waitForDataInBackgroundAndNotifyForModes(modes: NSArray); message 'waitForDataInBackgroundAndNotifyForModes:';
    procedure waitForDataInBackgroundAndNotify; message 'waitForDataInBackgroundAndNotify';
  end;

{ NSFileHandlePlatformSpecificCategory }
  NSFileHandlePlatformSpecificCategory = objccategory external (NSFileHandle)
    function initWithFileDescriptor_closeOnDealloc(fd: cint; closeopt: Boolean): id; message 'initWithFileDescriptor:closeOnDealloc:';
    function initWithFileDescriptor(fd: cint): id; message 'initWithFileDescriptor:';
    function fileDescriptor: cint; message 'fileDescriptor';
  end;

{$endif}
{$endif}