mirror of
https://github.com/macports/pallet.git
synced 2026-07-12 18:18:47 -07:00
git-svn-id: https://svn.macports.org/repository/macports/contrib/MacPorts_Framework@39835 d073be05-634f-4543-b044-5fe20cf6d1d6
22 lines
576 B
Objective-C
22 lines
576 B
Objective-C
//
|
|
// MPNotifications+IPCAdditions.h
|
|
// MacPorts.Framework
|
|
//
|
|
// Created by George Armah on 8/24/08.
|
|
// Copyright 2008 Lafayette College. All rights reserved.
|
|
//
|
|
|
|
#import "MPNotifications.h"
|
|
|
|
static int clientHasQuit = 0;
|
|
static int hasInstalledSignalsToSocket = 0;
|
|
|
|
@interface MPNotifications (IPCAdditions)
|
|
-(BOOL) terminateBackgroundThread;
|
|
-(void) setTerminateBackgroundThread:(BOOL)newStatus;
|
|
-(void) startIPCServerThread:(NSDictionary *)serverInfo;
|
|
-(void) prepareIPCServerThread;
|
|
-(void) stopIPCServerThread;
|
|
-(void) sendIPCNotification:(NSString *)message;
|
|
@end
|