1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Fix C mangling

This commit is contained in:
Michał Janiszewski
2017-08-03 21:23:31 +02:00
committed by Michał Janiszewski
parent edbd55a8bd
commit 32407868cc
2 changed files with 8 additions and 2 deletions

View File

@@ -16,7 +16,13 @@
#pragma once
#include "../common.h"
#ifdef __cplusplus
extern "C" {
#endif
#include "../common.h"
#ifdef __cplusplus
}
#endif
#define MIXER_VOLUME_MAX 128
#define MIXER_LOOP_NONE 0

View File

@@ -20,12 +20,12 @@
#include <vector>
#endif
#include "../common.h"
#ifdef __cplusplus
extern "C"
{
#endif
#include "../common.h"
#include "../object.h"
#ifdef __cplusplus
}