···11+/*
22+ * Copyright (c) 1998-2014 Apple Inc. All rights reserved.
33+ *
44+ * @APPLE_LICENSE_HEADER_START@
55+ *
66+ * This file contains Original Code and/or Modifications of Original Code
77+ * as defined in and that are subject to the Apple Public Source License
88+ * Version 2.0 (the 'License'). You may not use this file except in
99+ * compliance with the License. Please obtain a copy of the License at
1010+ * http://www.opensource.apple.com/apsl/ and read it before using this
1111+ * file.
1212+ *
1313+ * The Original Code and all software distributed under the License are
1414+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
1515+ * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
1616+ * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
1717+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
1818+ * Please see the License for the specific language governing rights and
1919+ * limitations under the License.
2020+ *
2121+ * @APPLE_LICENSE_HEADER_END@
2222+ */
2323+2424+#include "../diskarbitrationd/DAInternal.h"
···243243 * @param disk The disk object.
244244 * @param dissenter A dissenter object on failure or NULL on success.
245245 * @param context The user-defined context parameter given to the mount function.
246246+ * @discussion
247247+ * If the disk is already mounted, then status code in the dissenter object will be set to kDAReturnBusy
246248 */
247249248250typedef void ( *DADiskMountCallback )( DADiskRef disk, DADissenterRef __nullable dissenter, void * __nullable context );
···279281 DADiskMountOptions options,
280282 DADiskMountCallback __nullable callback,
281283 void * __nullable context,
282282- CFStringRef arguments[] );
284284+ CFStringRef __nullable arguments[_Nullable] );
283285284286/*!
285287 * @typedef DADiskMountApprovalCallback