27 lines
338 B
C
27 lines
338 B
C
/*
|
|
* $Id: main.h,v 1.1 2007-02-20 14:04:21 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _ASE_MAIN_H_
|
|
#define _ASE_MAIN_H_
|
|
|
|
#include <ase/types.h>
|
|
#include <ase/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
|