From 50c52385afdb68932c8a6dcccd953c86a07786f9 Mon Sep 17 00:00:00 2001 From: ChrisMiuchiz Date: Sun, 22 Sep 2019 19:39:13 -0400 Subject: [PATCH] Remove old code --- CallbackManager/main.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 CallbackManager/main.h diff --git a/CallbackManager/main.h b/CallbackManager/main.h deleted file mode 100644 index ee03cf3..0000000 --- a/CallbackManager/main.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef __MAIN_H__ -#define __MAIN_H__ - -#include - -/* To use this exported function of dll, include this header - * in your project. - */ - -#ifdef BUILD_DLL - #define DLL_EXPORT __declspec(dllexport) -#else - #define DLL_EXPORT __declspec(dllimport) -#endif - - -#ifdef __cplusplus -extern "C" -{ -#endif - -void DLL_EXPORT SomeFunction(const LPCSTR sometext); - -#ifdef __cplusplus -} -#endif - -#endif // __MAIN_H__