mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-15 12:04:53 +00:00
20 lines
445 B
C
20 lines
445 B
C
|
/**
|
||
|
* APPBackgroundMode.h
|
||
|
* Cordova BackgroundMode Plugin
|
||
|
*
|
||
|
* Created by Sebastian Katzer (github.com/katzer) on 08/10/2013.
|
||
|
* Copyright 2013 Sebastian Katzer. All rights reserved.
|
||
|
* GPL v2 licensed
|
||
|
*/
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <Cordova/CDVPlugin.h>
|
||
|
|
||
|
@interface APPBackgroundMode : CDVPlugin
|
||
|
|
||
|
// Aktiviert den Hintergrundmodus
|
||
|
- (void) activateMode;
|
||
|
// Deaktiviert den Hintergrundmodus
|
||
|
- (void) deactivateMode;
|
||
|
|
||
|
@end
|