mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Fix extern "C" error in kplib.h affecting the Build tools
git-svn-id: https://svn.eduke32.com/eduke32@7543 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ea631cb6ac
commit
664c1ed38e
1 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,3 @@
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef compat_h_
|
#ifndef compat_h_
|
||||||
#include "compat.h"
|
#include "compat.h"
|
||||||
|
@ -8,6 +5,10 @@ extern "C" {
|
||||||
|
|
||||||
#include "vfs.h"
|
#include "vfs.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
buildvfs_FILE fil; //0:no file open, !=0:open file (either stand-alone or zip)
|
buildvfs_FILE fil; //0:no file open, !=0:open file (either stand-alone or zip)
|
||||||
|
|
Loading…
Reference in a new issue