From dbe773f01a1221c483643e33bd50d0245d2aa077 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 7 Jan 2020 04:50:15 +0000 Subject: [PATCH] ...Remove more C-compatibility stuff --- src/BossLife.h | 8 -------- src/ValueView.h | 8 -------- 2 files changed, 16 deletions(-) diff --git a/src/BossLife.h b/src/BossLife.h index 28fa00f1..1d5ffc63 100644 --- a/src/BossLife.h +++ b/src/BossLife.h @@ -2,15 +2,7 @@ #include "WindowsWrapper.h" -#ifdef __cplusplus -extern "C" { -#endif - void InitBossLife(void); BOOL StartBossLife(int code_event); BOOL StartBossLife2(void); void PutBossLife(void); - -#ifdef __cplusplus -} -#endif diff --git a/src/ValueView.h b/src/ValueView.h index cf80e060..368e7039 100644 --- a/src/ValueView.h +++ b/src/ValueView.h @@ -2,10 +2,6 @@ #include "WindowsWrapper.h" -#ifdef __cplusplus -extern "C" { -#endif - typedef struct VALUEVIEW { BOOL flag; @@ -21,7 +17,3 @@ void ClearValueView(void); void SetValueView(int *px, int *py, int value); void ActValueView(void); void PutValueView(int flx, int fly); - -#ifdef __cplusplus -} -#endif