/* * $Id: main.h,v 1.3 2007/04/30 08:32:50 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