]> git.saurik.com Git - apple/xnu.git/blame - osfmk/UserNotification/UNDRequest.defs
xnu-7195.101.1.tar.gz
[apple/xnu.git] / osfmk / UserNotification / UNDRequest.defs
CommitLineData
1c79356b 1/*
2d21ac55 2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
1c79356b 3 *
2d21ac55
A
4 * @APPLE_OSREFERENCE_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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28
29subsystem
30#if KERNEL_USER
31 KernelUser
32#endif /* KERNEL_USER */
33 UNDRequest 6000;
34
35#include <mach/std_types.defs>
36#include <UserNotification/UNDTypes.defs>
37
38
39/*
40-- Messages sent by the UserNotification Client to the Server
41*/
42
43/* Execution information */
44simpleroutine UNDExecute_rpc(
45 server: UNDServerRef;
46 in executionPath: UNDPath;
47 in uid: int;
48 in gid: int);
49
50/* Bundle notice and bundle alert */
51
52simpleroutine UNDDisplayNoticeFromBundle_rpc(
53 server: UNDServerRef;
54 in reply: UNDReplyRef;
55 in bundlePath: UNDPath;
56 in fileName: UNDPath;
57 in fileExtension: UNDPath;
58 in messageKey: UNDKey);
59
60simpleroutine UNDDisplayAlertFromBundle_rpc(
61 server: UNDServerRef;
62 in reply: UNDReplyRef;
63 in bundlePath: UNDPath;
64 in fileName: UNDKey;
65 in fileExtension: UNDKey;
66 in messageKey: UNDKey);
67
68simpleroutine UNDDisplayCustomFromBundle_rpc(
69 server: UNDServerRef;
70 in reply: UNDReplyRef;
71 in bundlePath: UNDPath;
72 in fileName: UNDKey;
73 in fileExtension: UNDKey;
74 in messageKey: UNDKey;
75 in tokenKey: UNDPath);
76
6d2010ae 77skip; /* was UNDDisplayCustomFromDictionary_rpc */
1c79356b
A
78
79simpleroutine UNDCancelNotification_rpc(
80 server: UNDServerRef;
81 in userLandNotificationKey: int);
82
83/*
84 * Just pops up a notice with a single OK button and the label and message
85 * specified below. As such, there is no acknowledgement from the server.
86 */
87simpleroutine UNDDisplayNoticeSimple_rpc(
88 server: UNDServerRef;
91447636 89 in rpctimeout: int;
1c79356b
A
90 in flags: unsigned;
91 in iconPath:UNDLabel;
92 in soundPath:UNDLabel;
93 in localizationPath:UNDLabel;
94 in header: UNDLabel;
95 in message: UNDMessage;
96 in defaultButtonTitle:UNDLabel);
97
98/*
99 * A synchronous routine to display an alert. This will wait for the
100 * result to come back. As this can take an exceedingly long time to
101 * complete (and will block the calling thread for the duration) great
102 * care should be exercised before using this method.
103 */
104routine UNDDisplayAlertSimple_rpc(
105 server: UNDServerRef;
91447636 106 in rpctimeout: int;
1c79356b
A
107 in flags: unsigned;
108 in iconPath:UNDLabel;
109 in soundPath:UNDLabel;
110 in localizationPath:UNDLabel;
111 in header: UNDLabel;
112 in message: UNDMessage;
113 in defaultButtonTitle:UNDLabel;
114 in alternateButtonTitle:UNDLabel;
115 in otherButtonTitle:UNDLabel;
2d21ac55
A
116 out response: unsigned);
117
118/* vim: set ft=c : */