This is EditSpeaker.m in view mode; [Download] [Up]
#import <appkit/appkit.h>
#import "EditSpeaker.h"
#import <mach/mach.h>
#import <mach/message.h>
#import <servers/netname.h>
extern port_t name_server_port;
extern id NXResponsibleDelegate();
@implementation EditSpeaker :Speaker
{}
-(int)openFile : (char *) fileName
onHost : (char *) hostName
atTrueLine : (int) line
/* */
{
return [self selectorRPC:"openFile:onHost:atTrueLine:"
paramTypes:"cci",
fileName,
hostName,
line];
}
-(int)openFile : (char *) fileName
onHost : (char *) hostName
fromTrueLine : (int) line1
to : (int) line2
/* */
{
return [self selectorRPC:"openFile:onHost:fromTrueLine:to:"
paramTypes:"ccii",
fileName,
hostName,
line1,
line2];
}
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.