2016-07-28 00:20:33 +01:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
2021-12-26 18:47:58 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2016-07-28 00:20:33 +01:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-07-28 00:20:33 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLATFORM_SDL_MACOSX_WRAPPER_H
|
|
|
|
#define PLATFORM_SDL_MACOSX_WRAPPER_H
|
|
|
|
|
|
|
|
#include <common/str.h>
|
|
|
|
|
2017-04-24 00:30:28 +01:00
|
|
|
Common::String getDesktopPathMacOSX();
|
2022-05-06 18:59:38 +02:00
|
|
|
Common::String getResourceAppBundlePathMacOSX();
|
2022-06-30 13:21:42 -05:00
|
|
|
Common::String getAppSupportPathMacOSX();
|
2023-02-25 21:59:59 +01:00
|
|
|
Common::String getMacBundleName();
|
2016-07-28 00:20:33 +01:00
|
|
|
|
|
|
|
#endif
|