mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
17 lines
372 B
C
17 lines
372 B
C
|
#ifndef INSTALLOSX_H
|
||
|
#define INSTALLOSX_H
|
||
|
|
||
|
#ifndef Q_OS_MACX
|
||
|
#error "This file is only meant to be compiled for Mac OSX targets"
|
||
|
#endif
|
||
|
|
||
|
namespace osx
|
||
|
{
|
||
|
static constexpr int EXIT_UPDATE_MACX = 218; // We track our state using unique exit codes when debugging
|
||
|
static constexpr int EXIT_UPDATE_MACX_FAIL = 216;
|
||
|
|
||
|
void moveToAppFolder();
|
||
|
}
|
||
|
|
||
|
#endif // INSTALLOSX_H
|