]> git.saurik.com Git - apple/launchd.git/blob - launchd/src/launch_internal.h
launchd-328.tar.gz
[apple/launchd.git] / launchd / src / launch_internal.h
1 #ifndef _LAUNCH_INTERNAL_H_
2 #define _LAUNCH_INTERNAL_H_
3 /*
4 * Copyright (c) 2007 Apple Computer, Inc. All rights reserved.
5 *
6 * @APPLE_APACHE_LICENSE_HEADER_START@
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 *
20 * @APPLE_APACHE_LICENSE_HEADER_END@
21 */
22
23 #pragma GCC visibility push(default)
24
25 #define LAUNCHD_DB_PREFIX "/var/db/launchd.db"
26
27 size_t launch_data_pack(launch_data_t d, void *where, size_t len, int *fd_where, size_t *fdslotsleft);
28 launch_data_t launch_data_unpack(void *data, size_t data_size, int *fds, size_t fd_cnt, size_t *data_offset, size_t *fdoffset);
29
30 #pragma GCC visibility pop
31
32 #endif