qse/ase/utl/main.h
2007-04-28 21:31:31 +00:00

27 lines
354 B
C

/*
* $Id: main.h,v 1.1 2007/03/28 14:05:30 bacon Exp $
*/
#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
extern "C" { int ase_main (...); }
#else
extern int ase_main ();
#endif
#endif
#endif