/**1* IPC.h - System Starter IPC routines2* Wilfredo Sanchez | [email protected]3* Kevin Van Vechten | [email protected]4* $Apple$5**6* Copyright (c) 1999-2001 Apple Computer, Inc. All rights reserved.7*8* @APPLE_APACHE_LICENSE_HEADER_START@9*10* Licensed under the Apache License, Version 2.0 (the "License");11* you may not use this file except in compliance with the License.12* You may obtain a copy of the License at13*14* http://www.apache.org/licenses/LICENSE-2.015*16* Unless required by applicable law or agreed to in writing, software17* distributed under the License is distributed on an "AS IS" BASIS,18* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.19* See the License for the specific language governing permissions and20* limitations under the License.21*22* @APPLE_APACHE_LICENSE_HEADER_END@23**/2425#ifndef _IPC_H_26#define _IPC_H_2728#include "SystemStarter.h"2930/**31* Monitor a startup item task. Creates a mach port and uses the32* invalidation callback to notify system starter when the process33* terminates.34**/35void MonitorStartupItem (StartupContext aStartupContext, CFMutableDictionaryRef anItem);3637#endif /* _IPC_H_ */383940