00001
00002
00003
00004 #ifndef __BASICDLL_H __
00005 #define __BASICDLL_H __ 1
00006 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009
00010 #define BAFLG_BINARY 0x00000001
00011 #ifdef WIN32
00012 #define DLL_EXPORT __declspec(dllexport)
00013 #endif
00014
00015 DLL_EXPORT
00016 int _stdcall basic(char *szInputFile,
00017 void *StdinFunction,
00018 void *StdouFunction,
00019 void *EnvirFunction,
00020 void *EmbedPointer,
00021 char *CmdLineOptions,
00022 unsigned long ulFlag);
00023
00024 #ifdef __cplusplus
00025 }
00026 #endif
00027 #endif