|
ADC Home > Reference Library > Reference > Darwin > Disk Arbitration Framework Reference
|
DASession.h |
| Includes: | <CoreFoundation/CoreFoundation.h> |
DAApprovalSessionCreate |
Creates a new approval session.
extern DAApprovalSessionRef DAApprovalSessionCreate( CFAllocatorRef allocator );
A reference to a new DAApprovalSession.
The caller of this function receives a reference to the returned object. The caller also implicitly retains the object and is responsible for releasing it.
DAApprovalSessionGetTypeID |
Returns the type identifier of all DAApprovalSession instances.
extern CFTypeID DAApprovalSessionGetTypeID( void );
DAApprovalSessionScheduleWithRunLoop |
Schedules the approval session on a run loop.
extern void DAApprovalSessionScheduleWithRunLoop( DAApprovalSessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode );
sessionrunLooprunLoopModeDAApprovalSessionUnscheduleFromRunLoop |
Unschedules the approval session from a run loop.
extern void DAApprovalSessionUnscheduleFromRunLoop( DAApprovalSessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode );
sessionrunLooprunLoopModeDASessionCreate |
Creates a new session.
extern DASessionRef DASessionCreate( CFAllocatorRef allocator );
A reference to a new DASession.
The caller of this function receives a reference to the returned object. The caller also implicitly retains the object and is responsible for releasing it.
DASessionGetTypeID |
Returns the type identifier of all DASession instances.
extern CFTypeID DASessionGetTypeID( void );
DASessionScheduleWithRunLoop |
Schedules the session on a run loop.
extern void DASessionScheduleWithRunLoop( DASessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode );
sessionrunLooprunLoopModeDASessionUnscheduleFromRunLoop |
Unschedules the session from a run loop.
extern void DASessionUnscheduleFromRunLoop( DASessionRef session, CFRunLoopRef runLoop, CFStringRef runLoopMode );
sessionrunLooprunLoopModeDAApprovalSessionRef |
typedef struct __DAApprovalSession * DAApprovalSessionRef;
Type of a reference to DAApprovalSession instances.
DASessionRef |
typedef struct __DASession * DASessionRef;
Type of a reference to DASession instances.
|