/* * $Id: main.h,v 1.1.1.1 2007/03/28 14:05:30 bacon Exp $ */ #ifndef _ASE_UTL_MAIN_H_ #define _ASE_UTL_MAIN_H_ #include #include #if defined(_WIN32) #include #define ase_main _tmain #else #ifdef __cplusplus extern "C" { int ase_main (...); } #else extern int ase_main (); #endif #endif #endif