]> git.saurik.com Git - apple/configd.git/blob - SystemConfiguration.fproj/SCDynamicStoreSetSpecificPrivate.h
configd-212.2.tar.gz
[apple/configd.git] / SystemConfiguration.fproj / SCDynamicStoreSetSpecificPrivate.h
1 /*
2 * Copyright (c) 2001, 2003-2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 #ifndef _SCDYNAMICSTORESETSPECIFICPRIVATE_H
25 #define _SCDYNAMICSTORESETSPECIFICPRIVATE_H
26
27 #include <sys/cdefs.h>
28 #include <SystemConfiguration/SCDynamicStore.h>
29
30
31 /*!
32 @header SCDynamicStoreSetSpecificPrivate
33 */
34
35 __BEGIN_DECLS
36
37 /*!
38 @function SCDynamicStoreSetConsoleInformation
39 @discussion Returns information about all console users on the system.
40 @param store An SCDynamicStoreRef that should be used for communication
41 with the server.
42 If NULL, a temporary session will be used.
43 @param user A pointer to a character buffer containing the name of
44 the current/primary "Console" session. If NULL, any current
45 "Console" session information will be reset.
46 @param uid The user ID of the current/primary "Console" user.
47 @param gid The group ID of the current/primary "Console" user.
48 @param sessions An array of dictionaries containing information about
49 each console session on the system; NULL if no sessions are
50 defined.
51
52 The contents of this array should match that of the CoreGraphics
53 CGSCopySessionList() SPI.
54
55 @result A boolean indicating the success (or failure) of the call.
56 */
57 Boolean
58 SCDynamicStoreSetConsoleInformation (
59 SCDynamicStoreRef store,
60 const char *user,
61 uid_t uid,
62 gid_t gid,
63 CFArrayRef sessions
64 );
65
66 /*!
67 @function SCDynamicStoreSetConsoleUser
68 @discussion Sets the name, user ID, and group ID of the currently
69 logged in user.
70 @param store An SCDynamicStoreRef that should be used for communication
71 with the server.
72 If NULL, a temporary session will be used.
73 @param user A pointer to a character buffer containing the name of
74 the current "Console" user. If NULL, any current "Console"
75 user information will be reset.
76 @param uid The user ID of the current "Console" user.
77 @param gid The group ID of the current "Console" user.
78 @result A boolean indicating the success (or failure) of the call.
79 */
80 Boolean
81 SCDynamicStoreSetConsoleUser (
82 SCDynamicStoreRef store,
83 const char *user,
84 uid_t uid,
85 gid_t gid
86 );
87
88 __END_DECLS
89
90 #endif /* _SCDYNAMICSTORESETSPECIFICPRIVATE_H */