Remove old code

This commit is contained in:
ChrisMiuchiz 2019-09-22 19:39:13 -04:00
parent fbdc0cc24c
commit 50c52385af
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
#ifndef __MAIN_H__
#define __MAIN_H__
#include <windows.h>
/* 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__