1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

move extern "C" to header

This commit is contained in:
Andrey Filipenkov 2021-03-20 17:05:32 +03:00
parent 01c17d856f
commit 2354023731
4 changed files with 11 additions and 5 deletions

View File

@ -7,6 +7,12 @@
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <TargetConditionals.h>
#ifdef __OBJC__
@ -30,3 +36,7 @@ extern const char *ios_bundlePath();
extern const char *ios_frameworksPath();
extern const char *ios_bundleIdentifier();
#ifdef __cplusplus
}
#endif

View File

@ -375,9 +375,7 @@ bfs::path VCMIDirsApple::userConfigPath() const { return userDataPath() / "confi
std::string VCMIDirsApple::libraryName(const std::string& basename) const { return "lib" + basename + ".dylib"; }
#ifdef VCMI_IOS
extern "C" {
#import "CIOSUtils.h"
}
class VCMIDirsIOS final : public VCMIDirsApple
{

View File

@ -31,8 +31,8 @@ namespace ELogLevel
}
}
#elif defined(VCMI_IOS)
extern "C" {
#import "../CIOSUtils.h"
extern "C" {
#include <os/log.h>
}
#endif

View File

@ -11,9 +11,7 @@
#include "../Global.h"
#include "CVCMIServer.h"
extern "C" {
#import "../lib/CIOSUtils.h"
}
@interface ViewController : UIViewController
@property (nonatomic, copy) NSArray<NSURL *> *dataDirsInDocuments;