blob: 8267af3871256214490be152122d6a01ba4223ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// NSFileHandleExtensions.h
// Liaison
//
// Created by Brian Cully on Sun May 25 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
#define FileHandleWriteComplete @"FileHandleWriteComplete"
#define FileHandleClosed @"FileHandleClosed"
@interface NSFileHandleExtensions : NSFileHandle
- (void)writeDataInBackground: (NSData *)someData;
@end
|