mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 03:37:40 +00:00
20 lines
510 B
Objective-C
Executable File
20 lines
510 B
Objective-C
Executable File
//
|
|
// TDAudioQueueController.h
|
|
// TDAudioStreamer
|
|
//
|
|
// Created by Tony DiPasquale on 10/29/13.
|
|
// Copyright (c) 2013 Tony DiPasquale. The MIT License (MIT).
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AudioToolbox/AudioToolbox.h>
|
|
|
|
@interface TDAudioQueueController : NSObject
|
|
|
|
+ (OSStatus)playAudioQueue:(AudioQueueRef)audioQueue;
|
|
+ (OSStatus)pauseAudioQueue:(AudioQueueRef)audioQueue;
|
|
+ (OSStatus)stopAudioQueue:(AudioQueueRef)audioQueue;
|
|
+ (OSStatus)finishAudioQueue:(AudioQueueRef)audioQueue;
|
|
|
|
@end
|