2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2007-05-07 20:08:00 +00:00
|
|
|
* $Id: main.h,v 1.4 2007/05/06 08:05:36 bacon Exp $
|
2007-05-02 01:07:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASE_UTL_MAIN_H_
|
|
|
|
#define _ASE_UTL_MAIN_H_
|
|
|
|
|
|
|
|
#include <ase/cmn/types.h>
|
|
|
|
#include <ase/cmn/macros.h>
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
|
|
|
#include <tchar.h>
|
|
|
|
#define ase_main _tmain
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2007-05-07 20:08:00 +00:00
|
|
|
/*extern "C" { int ase_main (...); }*/
|
2007-05-02 01:07:00 +00:00
|
|
|
#else
|
|
|
|
extern int ase_main ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|