forked from EVOgeek/Vmeda.Online
Note: The code from android & ios folders is extracted from https://github.com/dpa99c/cordova-diagnostic-plugin Co-Authored-By: Dave Alden <dpa99c@gmail.com>
22 lines
557 B
Objective-C
22 lines
557 B
Objective-C
/*
|
|
* Diagnostic_Microphone.h
|
|
* Diagnostic Plugin - Microphone Module
|
|
*
|
|
* Copyright (c) 2018 Working Edge Ltd.
|
|
* Copyright (c) 2012 AVANTIC ESTUDIO DE INGENIEROS
|
|
*/
|
|
|
|
#import <Cordova/CDV.h>
|
|
#import <Cordova/CDVPlugin.h>
|
|
#import "Diagnostic.h"
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
@interface Diagnostic_Microphone : CDVPlugin
|
|
|
|
- (void) isMicrophoneAuthorized: (CDVInvokedUrlCommand*)command;
|
|
- (void) getMicrophoneAuthorizationStatus: (CDVInvokedUrlCommand*)command;
|
|
- (void) requestMicrophoneAuthorization: (CDVInvokedUrlCommand*)command;
|
|
|
|
@end
|