blob: e9c23510ee05cbf4565492dc72cd153b4cbad722 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
{ 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}
|