00001 /* 00002 basicdll.h 00003 */ 00004 #ifndef __BASICDLL_H__ 00005 #define __BASICDLL_H__ 1 00006 00007 #define BAFLG_BINARY 0x00000001 00008 #ifdef WIN32 00009 #define DLL_EXPORT __declspec(dllexport) 00010 #endif 00011 00012 DLL_EXPORT 00013 int _stdcall basic(char *szInputFile, 00014 void *StdinFunction, 00015 void *StdouFunction, 00016 void *EnvirFunction, 00017 void *EmbedPointer, 00018 char *CmdLineOptions, 00019 unsigned long ulFlag); 00020 #endif