]>
git.saurik.com Git - apple/configd.git/blob - SystemConfiguration.fproj/SCDynamicStoreSetSpecificPrivate.h
2 * Copyright (c) 2001-2003 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
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
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.
21 * @APPLE_LICENSE_HEADER_END@
24 #ifndef _SCDYNAMICSTORESETSPECIFICPRIVATE_H
25 #define _SCDYNAMICSTORESETSPECIFICPRIVATE_H
27 #include <sys/cdefs.h>
28 #include <SystemConfiguration/SCDynamicStore.h>
32 @header SCDynamicStoreSetSpecificPrivate
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
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
52 The contents of this array should match that of the CoreGraphics
53 CGSCopySessionList() SPI.
55 @result A boolean indicating the success (or failure) of the call.
58 SCDynamicStoreSetConsoleInformation (
59 SCDynamicStoreRef store
,
67 @function SCDynamicStoreSetConsoleUser
68 @discussion Sets the name, user ID, and group ID of the currently
70 @param store An SCDynamicStoreRef that should be used for communication
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.
81 SCDynamicStoreSetConsoleUser (
82 SCDynamicStoreRef store
,
90 #endif /* _SCDYNAMICSTORESETSPECIFICPRIVATE_H */