ObjFW  Check-in [3f655d43f6]

Overview
Comment:Add missing definitions of Block_{copy,release} to OFBlock.h.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3f655d43f64ea9318294c1fd7bb6099d93a589a3db016c2c0c53e0530df92e96
User & Date: js on 2010-09-06 20:51:35
Other Links: manifest | tags
Context
2010-09-07
09:10
Rename +[addObjectToTopmostPool:] to +[addObject:]. check-in: eafb8d18ed user: js tags: trunk
2010-09-06
20:51
Add missing definitions of Block_{copy,release} to OFBlock.h. check-in: 3f655d43f6 user: js tags: trunk
20:27
Blocks can be used like normal ObjC objects now. check-in: ccf87e1ffb user: js tags: trunk
Changes

Modified src/OFBlock.h from [31cbc5c2b5] to [a646593991].

61
62
63
64
65
66
67



	Class isa;
}

- copy;
- (void)release;
- autorelease;
@end










>
>
>
61
62
63
64
65
66
67
68
69
70
	Class isa;
}

- copy;
- (void)release;
- autorelease;
@end

extern of_block_literal_t* Block_copy(of_block_literal_t*);
extern void Block_release(of_block_literal_t*);