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:
parent
01c17d856f
commit
2354023731
@ -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
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -31,8 +31,8 @@ namespace ELogLevel
|
||||
}
|
||||
}
|
||||
#elif defined(VCMI_IOS)
|
||||
extern "C" {
|
||||
#import "../CIOSUtils.h"
|
||||
extern "C" {
|
||||
#include <os/log.h>
|
||||
}
|
||||
#endif
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user