This is Localization.h in view mode; [Download] [Up]
#import <appkit/Application.h>
#import <defaults.h>
#import <time.h>
#define LocalString(key, value, comment) doLocalString(NULL, key, value)
#define LocalStringFromTable(table, key, value, comment) doLocalString(#table, key, value)
extern id LoadLocalNib(const char *nibFile, id owner);
extern id LocalImage(const char *file);
extern void InitLocalDateAndTime();
#define LocalDateAndTime(buffer, maxBufferSize, time) \
strftime(buffer, maxBufferSize, NXGetDefaultValue([NXApp appName], "NXDateAndTime"), localtime(time))
#define LocalDate(buffer, maxBufferSize, time) \
strftime(buffer, maxBufferSize, NXGetDefaultValue([NXApp appName], "NXDate"), localtime(time))
#define LocalTime(buffer, maxBufferSize, time) \
strftime(buffer, maxBufferSize, NXGetDefaultValue([NXApp appName], "NXTime"), localtime(time))
extern const char *doLocalString(const char *stringTable, const char *key, const char *value);
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.