2007-02-20 14:04:22 +00:00
|
|
|
/*
|
2007-03-06 14:16:53 +00:00
|
|
|
* $Id: main.h,v 1.3 2007-03-06 14:16:53 bacon Exp $
|
2007-02-20 14:04:22 +00:00
|
|
|
*/
|
|
|
|
|
2007-02-22 14:32:08 +00:00
|
|
|
#ifndef _ASE_UTL_MAIN_H_
|
|
|
|
#define _ASE_UTL_MAIN_H_
|
2007-02-20 14:04:22 +00:00
|
|
|
|
2007-03-06 14:16:53 +00:00
|
|
|
#include <ase/cmn/types.h>
|
|
|
|
#include <ase/cmn/macros.h>
|
2007-02-20 14:04:22 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
|
|
|
#include <tchar.h>
|
|
|
|
#define ase_main _tmain
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" { int ase_main (...); }
|
|
|
|
#else
|
|
|
|
extern int ase_main ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|