replace "NXOpenTypedStream(<stream>, NX_READONLY)" with "[[NSUnarchiver alloc] initForReadingWithData:<stream>]"
error "ArchiverConversion: '[[NSUnarchiver alloc] init...]' used to be 'NXOpenTypedStream(...)'; <stream> should be converted to 'NSData *'."
replace "NXOpenTypedStream(<stream>, NX_WRITEONLY)" with "[[NSArchiver alloc] initForWritingWithMutableData:<stream>]"
error "ArchiverConversion: '[[NSUnarchiver alloc] init...]' used to be 'NXOpenTypedStream(...)'; <stream> should be converted to 'NSMutableData *'."
replace "NXOpenTypedStream(<stream>, <mode>)" with same
error "ArchiverConversion: 'NXOpenTypedStream(<stream>, <mode>)' should be '[[NSUnarchiver alloc] initForReadingWithData:<stream>]' for reading or '[[NSArchiver alloc] initForWritingWithMutableData:<stream>]' for writing. <stream> should be converted to 'NSMutableData *'."
replace "NXOpenTypedStreamForFile(<filename>, NX_READONLY)" with "[[NSUnarchiver alloc] initForReadingWithData:[NSData dataWithContentsOfFile:<filename>]]"
replace "NXOpenTypedStreamForFile(<filename>, NX_WRITEONLY)" with "[[NSArchiver alloc] initForWritingWithMutableData:[NSMutableData data]]"
error "ArchiverConversion: [<archiver> initForWritingWithMutableData:...] - used to be NXOpenTypedStreamForFile(<filename>, NX_WRITEONLY)) - NSArchiver contents must be explicitly writen to <filename> when archiving is completed"
replace "NXOpenTypedStreamForFile(<filename>, <mode>)" with same
error "ArchiverConversion: 'NXOpenTypedStreamForFile(<filename>, <mode>)' should be '[[NSUnarchiver alloc] initForReadingWithData:[NSData dataWithContentsOfFile:<filename>]]' for reading or '[[NSArchiver alloc] initForWritingWithMutableData:[NSMutableData data]]' for writing. If writing, NSArchiver contents must be explicitly writen to <filename> when archiving is completed."
replace "NXCloseTypedStream(<stream>)" with "[<stream> release]"
warning "ArchiverConvesion: [<stream> release] was NXCloseTypedStream(<stream>); <stream> has been converted to an NSArchiver instance (was NXTypedStream); if <stream> was opened with NXOpenTypedStreamForFile(<filename>, NX_WRITEONLY) contents of <stream> must be explicitly written to <filename>; a warning will have appeared if this is the case"