This is AskOperator.h in view mode; [Download] [Up]
// -------------------------------------------------------------------------------------
// AskOperator
// -------------------------------------------------------------------------------------
#import <objc/Object.h>
// -------------------------------------------------------------------------------------
// remote object port name
#define ASK_SERVER "AskSERVER"
#define ASK_CLIENT "AskCLIENT"
// -------------------------------------------------------------------------------------
typedef struct askOperator_s {
int type;
char host[16];
char title[80];
char message[200];
char text[80];
char button[4][16];
} askOperator_t;
// -------------------------------------------------------------------------------------
@interface AskOperator : Object
{
id askPanel;
id askMessage;
id askText;
id askButton1;
id askButton2;
id askButton3;
id askButton4;
const char *buttonResponse;
const char *textResponse;
}
// -------------------------------------------------------------------------------------
+ (const char*)showAskPanel:(askOperator_t*)ao;
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.