Remove old code
This commit is contained in:
parent
fbdc0cc24c
commit
50c52385af
|
@ -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__
|
|
Loading…
Reference in New Issue