NSXPCConnection.h 484 B

12345678910111213141516171819202122
  1. enum {
  2. NSXPCConnectionPrivileged = (1 << 12UL )
  3. };
  4. typedef NSUInteger NSXPCConnectionOptions;
  5. @interface NSXPCConnection : NSObject
  6. @property (retain) id exportedObject;
  7. @property (retain) id exportedInterface;
  8. @property (retain) id remoteObjectInterface;
  9. - (id)initWithServiceName:(id)serviceName;
  10. - (void)resume;
  11. - (id)remoteObjectProxyWithErrorHandler:(id)errorHandler;
  12. - (instancetype)initWithMachServiceName:(NSString *)name options:(NSXPCConnectionOptions)options;
  13. @end