13 lines
381 B
C

#include <windows.h>
//#include "AxWIO.h"
#define dllExport _declspec(dllexport)
extern "C"
{
dllExport BOOL __stdcall AxInit();
dllExport BOOL __stdcall AxDIOInit();
dllExport BOOL __stdcall AxGetDO(unsigned short *data);
dllExport BOOL __stdcall AxGetDI(unsigned short *data);
dllExport BOOL __stdcall AxSetDO(unsigned short data);
dllExport void __stdcall AxShutdown();
}