Files
bacnet_stack/bacnet-stack/lib/main.h
T
kingdl802 6a2ca24857 remove the c++ comment instead of converting it because it
violates the coding style for header files - the enclosing 
endif is not commented.
2009-04-09 15:47:47 +00:00

28 lines
433 B
C

#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 /* __cplusplus */
void DLL_EXPORT SomeFunction(
const LPCSTR sometext);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif