33 lines
1010 B
Objective-C
33 lines
1010 B
Objective-C
//
|
|
// PFMoveApplication.h, version 1.24
|
|
// LetsMove
|
|
//
|
|
// Created by Andy Kim at Potion Factory LLC on 9/17/09
|
|
//
|
|
// The contents of this file are dedicated to the public domain.
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
Moves the running application to ~/Applications or /Applications if the former does not exist.
|
|
After the move, it relaunches app from the new location.
|
|
DOES NOT work for sandboxed applications.
|
|
|
|
Call from \c NSApplication's delegate method \c -applicationWillFinishLaunching: method. */
|
|
void PFMoveToApplicationsFolderIfNecessary(void);
|
|
|
|
/**
|
|
Check whether an app move is currently in progress.
|
|
Returns YES if LetsMove is currently in-progress trying to move the app to the Applications folder, or NO otherwise.
|
|
This can be used to work around a crash with apps that terminate after last window is closed.
|
|
See https://github.com/potionfactory/LetsMove/issues/64 for details. */
|
|
BOOL PFMoveIsInProgress(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|